|
|
|
|
|
by dminik
230 days ago
|
|
And this is one of the disadvantages of JSX. The snippets you posted are NOT identical. JSX (react flavor) is lazy. <My component> is not rendered/evaluated until it's needed. You can't just call a react component. It's not a regular function call. |
|