Keine Beschreibung

Snow 425c8d27b9 Fixed the validation on submit. Added simple animation. vor 8 Jahren
public 24b6e2c095 Initial commit vor 8 Jahren
src 425c8d27b9 Fixed the validation on submit. Added simple animation. vor 8 Jahren
.gitignore ae5c0cf78e Workflow update vor 8 Jahren
README.md d1005b50b9 Updated read with some thoughts vor 8 Jahren
package.json 48c71190cc Fixed dependecies version vor 8 Jahren

README.md

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

Install

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

Thoughts

Managing the state of components in an application is made easy by React. State change triggers event function that will 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.