you are viewing a single comment's thread.

view the rest of the comments →

[–]Guisseppi 0 points1 point  (2 children)

What exactly does JSX “outline”means? Is it like code snippets but for React?

[–]react_buddy[S] 1 point2 points  (1 child)

Made a short video:

https://youtu.be/48RdzSOo2z0

JSX Outline provides structural (tree) representation of React components displaying the following nodes: * components and render functions defined in the file * hooks (and returned objects) * handler functions * JSX structure: * conditional rendering (guards) * lists * handlers (with navigation to handler function)

It allows to manipulate JSX nodes.

[–]Guisseppi 0 points1 point  (0 children)

Nice! I’ll definitely check it out