Some of the worry around replacing elements is that it's expensive and destructive to other child elements that potentially exist already in the dom:
Destroying existing child element
So if you have a component like this:
```html
My component
```
...and a page like this:
```html
some content we want to get rid of
```
...the result after mounting would be:
```html
My component
```
You could potentially check that the elements that are being replaced are the same as the hydrated elements, but that could be a lot of work and potentially slow down performance. For Plenti we're just creating HTML fallbacks that should exactly mirror the hydrated components at their initial state, so it shouldn't be destructive in any way.
When Svelte hydrates, it appends a child component to its parent. In other words, it nests the new component inside the existing component.
How it currently works
So if you have a component like this: ```html
some content
some content
There have been several discussions about replacing the parent element instead of appending to it:
<html>
element: https://github.com/sveltejs/svelte/issues/5547Some of the worry around replacing elements is that it's expensive and destructive to other child elements that potentially exist already in the dom:
Destroying existing child element
So if you have a component like this: ```html
some content we want to get rid of
You could potentially check that the elements that are being replaced are the same as the hydrated elements, but that could be a lot of work and potentially slow down performance. For Plenti we're just creating HTML fallbacks that should exactly mirror the hydrated components at their initial state, so it shouldn't be destructive in any way.