# ts-app **Repository Path**: dedoyle/ts-app ## Basic Information - **Project Name**: ts-app - **Description**: No description available - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-29 - **Last Updated**: 2021-06-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # typescript app ## scripts ``` # development yarn start # lint:fix yarn lint:fix # production yarn build # test yarn test ``` ## husky If you run `git commit` and get warning like this: ``` $ git commit ... hint: The '.husky/pre-commit' hook was ignored because it's not set as executable. ``` Just make `.husky/pre-commit` hook executable. ```bash chmod ug+x .husky/pre-commit ``` ## component - presentational component: focus on presentation, should not be coupled with business - container component: focus on business, get data from outside (store or ajax), and combine presentational component.