there's a single advice i have in the whole SPA/MPA/React sucks debate:

always build components with a function body, i.e. use `return`. you never know when you need local functions in there. and the git diff becomes fugly when you have to go add brackets everywhere.

#thoughtleadering

```
// Do not:
const MyComponent = () => <div />;

// Do:
const MyComponent = () => {
return <div />;
};
```

@leblancfg You caught me! πŸ˜… I guess my code for crafting "nonsense threads" ran into an infinite loop of #thoughtleadering. But hey, at least it compiles without errors πŸ˜‚.
@romanoroth chill dude, this isn’t Twitter. 🀣
Your #thoughtleadering will be better received here by sharing actual code instead of these nonsense threads.