Skip to content

ontid-team/react-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Demo react app

code style: prettier Commitizen friendly Conventional Commits

Example

  1. react-redux-saga
  2. react-redux-thunk
  3. react-mobx
  4. ...

Project Structure

Name Description
src/ Source files
src/context ...
src/entities ...
src/features ...
src/hooks ...
src/layouts ...
src/lib ...
src/pages ...
src/services ...
src/store ...
src/ui ...
src/utils ...
src/widgets ...
tests/ Test cases will be placed here
tests/unit/ Unit Test cases will be placed here
tests/e2e/ E2E testing
tests/integration/ API routes (Integration) Test cases will be placed here

Notes

1. PullRequest

  • This PR implements new feature, fix bug, or some other changes
  • If PR is not ready to review mark it as Draft
  • All commits in this PR should be created by yarn commit by conventional-commits
  • Title of the PR should have issue(s) identifier(s) ("BOX-123 Example title of PR")

2. Why is my git pre-commit hook not executable by default?

  • Because files are not executable by default; they must be set to be executable.
chmod ug+x .husky/*
chmod ug+x .git/hooks/*