From the course: Building UI Components with Storybook: Master React Components and UI Design with Storybook for Better Efficiency

Unlock this course with a free trial

Join today to access over 25,200 courses taught by industry experts.

Event handling practice and section summary

Event handling practice and section summary

We've covered quite a bit in this section, so it's normal if you're new to React for a lot of scope to go over your head, as long as you're getting the principal ideas. What are the principal ideas? Well, we use Create React App to get a template rolling that's well-configured following the declarative paradigm of good standards from Create React App. We've got our node modules, we've got our packages, we've got our versions locked down. We've got this basic app file that has that index JS and the public HTML, of course, which is wrapping the root of React around it. What did we do? Well, we created a homepage component. We learned about JSX, how JSX intermingles JavaScript with HTML to get, to be able to create these pure component functions that can return the rendering of containers and elements and information, text descriptions, buttons, everything we need to build a web application. Then we learned about props and passing in props and composite components. Then we learned about…

Contents