بدون توضیح

Keyi 2def5ab001 Downgrade to react-router v3.0 for better integration with Nioh 8 سال پیش
public 2f6e2222d6 Cleaned the html file 8 سال پیش
src 2def5ab001 Downgrade to react-router v3.0 for better integration with Nioh 8 سال پیش
.gitignore 69d5fb9514 Ignores the tern and emacs related temp and conf files. 8 سال پیش
.yarnclean e01b23b246 Update code style 8 سال پیش
README.md b5bac3943f Updated readme 8 سال پیش
package.json 2def5ab001 Downgrade to react-router v3.0 for better integration with Nioh 8 سال پیش
yarn.lock 2def5ab001 Downgrade to react-router v3.0 for better integration with Nioh 8 سال پیش

README.md

This project is a collection of common UI components powered by React.js. demo

Run locally

In the source folder:

npm install
npm start

A development server will be ready and listen on localhost:3000.

Components

  • Toggle
  • Tabs
  • Simple counter managed by Redux
  • Modal
  • Slide Show
  • Form with validation
  • Reddit post fetcher
  • Animated burger menu

Thoughts

Managing complicated states of components in an application is made easy by React. Ingeneral, state change triggers event function that could be propagated automatically to children components. Redux reinforces this pattern by enforcing the principle of single source of truth. In the end, with React-Redux model, UI management evolves to fancy manipulation of a single client side data base.