yarn start
yarn test
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
src
├── App.css
├── App.test.tsx
├── App.tsx
├── components
│ ├── post.tsx
│ └── postList.tsx
├── containers
│ ├── __tests__
│ │ └── postList.container.spec.tsx
│ └── postList.tsx
├── index.css
├── index.tsx
├── logo.svg
├── react-app-env.d.ts
├── serviceWorker.ts
└── state
├── configureStore.dev.ts
├── ducks
│ ├── index.ts
│ └── post
│ ├── __tests__
│ │ ├── __mockData__
│ │ ├── actions.spec.ts
│ │ │ └── postsData.json
│ │ ├── reducers.spec.ts
│ │ └── sagas.spec.ts
│ ├── actions.ts
│ ├── reducers.ts
│ ├── sagas.ts
│ └── types.ts
├── index.ts
├── middlewares
│ └── saga.ts
└── utils
└── apiCaller.ts