Skip to content

An auction site with React and Redux

Notifications You must be signed in to change notification settings

duy-ndhk51/bid-on-it

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A starter project for React/Redux

A minimalistic React/Redux starter project

To use:

  • Fork this repo
  • Rename your repo according to the app you're building
git clone https://github.com/[your-org]/[your-app].git
cd [your-app] && npm install

This is the structure of this boilerplate:

.
├── client
│   ├── actions
│   │   └── index.js
│   ├── components
│   │   ├── App.jsx
│   │   └── Word.jsx
│   ├── containers
│   │   ├── AddWord.jsx
│   │   └── Words.js
│   ├── reducers
│   │   ├── index.js
│   │   └── words.js
│   └── index.js
├── public
│   ├── index.html
│   └── main.css
├── server
│   ├── index.js
│   └── server.js
├── .gitignore
├── package.json
├── README.md
└── webpack.config.js

About

An auction site with React and Redux

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 91.7%
  • CSS 5.6%
  • HTML 2.7%