Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 980 Bytes

README.md

File metadata and controls

52 lines (38 loc) · 980 Bytes

This project was bootstrapped with Create React App.

Deployed version

Publicly accessible link: http://sentence-game.now.sh - deployed to now.sh free plan, so first visit might be long, because app froze.

Run localy

yarn

# install dependencies
yarn

# run dev server
yarn start

npm

# install dependencies
npm install

# run dev server
npm start

Dependency

  • React - view layer
  • Redux - state
  • Jest - testing
  • prop-types - typechecking
  • react-slick - fancy sliding between inputs

Structure

├── README.md
├── now.json
├── package.json
├── public/ - static files
├── src
│   ├── App.js - App lives here
│   ├── components/ - react components located here
│   ├── index.js - entry file
│   ├── store/ - Redux related files
│   └── utils/ - Utility functions
└── yarn.lock