1.0.1 • Published 6 years ago

react-redux-bp v1.0.1

Weekly downloads
5
License
MIT
Repository
-
Last release
6 years ago

This project was bootstrapped with Create React App.

Getting Started

git clone https://github.com/robtaussig/reactReduxTemplate.git

cd reactReduxTemplate

yarn install

yarn start

//In new process

yarn watch-css
  • Root file located at src/App.jsx
  • Template for Containers located at src/SmartTemplate.jsx
  • Template for Components located at src/DumbTemplate.jsx

Without Changes

npm.io

With Changes

#src/App.jsx

render () {
  return (
    <div className={'app'}>
      Welcome!
    </div>
  );
}

#src/App.scss

.app {
  font-size: 30px;
  color: dodgerblue;
  width: 500px;
  height: 500px;
  text-align: center;
  line-height: 300px;
}

npm.io

UI Frameworks

Implementation Examples located in src/App.jsx

Material UI

git checkout material-ui

Styled Components

git checkout styled-components