September 2018
Beginner
156 pages
3h 28m
English
Since its release in 2013, React has redefined the way that frontend applications should be built. It introduces the concept of component-based architecture, which, in essence, allows you to visualize your application as if it were made up of tiny, self-sustained view components. These view components are reusable; that is, a component such as CommentBox or Footer encapsulates the necessary functionality and can be used across the pages in the site.
A page in this context is itself a view component that is composed of other tiny view components, as shown here:
<Dashboard> <Header> <Brand /> </Header> <SideNav> <NavLink key=”1”> <NavLink key=”2”> </SideNav> <ContentArea> <Chart> <Grid data="stockPriceList"> ...
Read now
Unlock full access