Skip to content

A sample React Application built using Ant Design and Redux Saga

License

Notifications You must be signed in to change notification settings

ochomoswill/react-antd-sample-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React Ant Design Sample App

This is a basic React application that uses Ant Design and Redux Saga for management of the state. It sources its data from JSONPlaceholder, which is an open source REST API provider.

Tools Used

  • React
  • Redux
  • Redux Saga
  • React Router v4
  • Ant Design

Installing

clone the repo

git clone https://github.com/ochomoswill/react-antd-sample-app.git

install node modules

npm install

Folder Structure

After creation, your project should look like this:

redux-saga-auth-app/    
    node_modules/
    public/
    src/   
    	assets/
    	routes/    	     
        store/
        	store1/
            	actions.js                
            	actionTypes.js  
            	reducers.js                
            	sagas.js
            	selectors.js 
            	services.js
        utils/                
        ...
        index.js
    .gitignore
    package.json
    README.md

Run the project

npm start

Building the project

npm run build