darrellwarde / thinking-in-react

The goal of this exercise is to learn how to think in React, by https://leanjs.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ReactJS Fundamentals - Thinking in React

The goal of this exercise is to learn how to think in React.

Requirements

You need to be comfortable writing JavaScript (ES6: Module system, class syntax, destructuring assignment). You need to have nodeand npminstalled in your computer.

Getting started:

git clone git@github.com:leanjscom/thinking-in-react.git && cd thinking-in-react && npm install && npm start

Exercise

Before you start, there are two types of components Functional Components and Class Comonents. Try to use a Functional component if the component doesn't have state, you'll need to refactor code a few times during the next exercise :)

Tasks

1- Refactor the “about” and “footer” sections by creating a stateless component for each. Make sure everything works.

2- Refactor the navbar by creating a stateless component and pass the dependencies via props. Make sure everything works.

3- Refactor the books section by creating a stateless component and pass the dependencies via props. Make sure everything works.

4- Is there any state in app that should be in the Books component? Refactor <Books> books if appropriate. Should <Books> be a Functional Component or a Class Component now?

5- Break <Books> down into <BookList> and <BookFilter>

6- What do you think it would make sense to componentize next? Are there any parts on that view that you can reuse? Try to explain to a mentor what you want to refactor before you code :)

Links

License

This material is available for private, non-commercial use under the GPL version 3.

About

The goal of this exercise is to learn how to think in React, by https://leanjs.com


Languages

Language:JavaScript 53.4%Language:CSS 41.4%Language:HTML 5.2%