|
|
|
|
|
by au-arms
1629 days ago
|
|
Clever, but this smells like a performance anti-pattern. Adopting this means you could, at worst, add 4 spacer divs per component. While most sites may never really feel a sting, for complex apps where reusability is a larger concern you've doubled to quadrupled the size of an already large DOM and you will be hit a death-by-one-thousand-cuts situation. Now you've got more... - html over the wire - html to parse for first render - DOM nodes to mount/unmount - memory usage from excess DOM - costly layouts due to extra nodes - lighthouse complaints of an excessively large DOM Otherwise a clean approach. Perhaps it could be solved at compile time or some other jsx -> CSS abstraction to maintain DX. |
|
I'm not sure if that's what this post is suggesting, though.