0.1.0 • Published 4 years ago

craft-cra v0.1.0

Weekly downloads
3
License
-
Repository
-
Last release
4 years ago

Craft-CRA

craft-cra (crafting and building cra for me and other) Create React App.

Development

Project Setup

git clone http://github.com/kretawiweka/craft-cra

yarn install

Local Development

yarn start

Test

yarn test

Build for Production

yarn build

Project Structure

src/
   ├── assets/
   ├── components/
        ├── common/
        ├── container/
        ├── layout/
        ├── scene/
   ├── constants/
   ├── redux/
        ├── actions/
        ├── reducers/
        ├── sagas/
        ├── types/
   ├── services/
   └── utils/

/src/assets Project assets

/src/components/common Pure React Components

/src/components/container React Redux Components

/src/components/layout Predefined Layout

/src/components/scene Wrap layout and container

/src/constants Constants which used in this project

/src/redux Redux Folder (Action, Reducer, Type and Saga)

/src/services Services which used in this project

/src/utils Utils Helpers