Hacker News new | ask | show | jobs
by andix 1141 days ago
The props.children/slots issue is one of my biggest problems with angular. It’s really hard to use composition like you always do in react.

Another thing is, that angular components always wrap their template into a block element (like a div) in the DOM. So if you do some refactoring and split up one big component, the result in the DOM is different and your CSS may not work anymore. If you are using flexbox or grid, it may even be impossible to split the component.