Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jinsung-l/cra-template-jinsung
https://github.com/jinsung-l/cra-template-jinsung
cra-template create-react-app create-react-app-template storybook tailwindcss typescript
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jinsung-l/cra-template-jinsung
- Owner: Jinsung-L
- License: mit
- Created: 2020-10-22T05:21:06.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-01T13:33:09.000Z (over 4 years ago)
- Last Synced: 2024-10-29T10:46:10.236Z (4 months ago)
- Topics: cra-template, create-react-app, create-react-app-template, storybook, tailwindcss, typescript
- Language: TypeScript
- Homepage:
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cra-template-jinsung
This is my custom template for [Create React App](https://github.com/facebook/create-react-app).
This template includes:
- [Storybook](https://storybook.js.org)
- [TailwindCSS](https://tailwindcss.com)
- [TypeScript](https://www.typescriptlang.org)To use this template, add `--template jinsung` when creating a new app.
For example:
```sh
npx create-react-app my-app --template jinsung# or
yarn create react-app my-app --template jinsung
```For more information, please refer to:
- [Getting Started](https://create-react-app.dev/docs/getting-started) – How to create a new app.
- [User Guide](https://create-react-app.dev) – How to develop apps bootstrapped with Create React App.## Troubleshotting
### Storybook was built without an error but fails to render
This happens when there's unresolved issues on Storybook often related to the latest version of React or TypeScript.
To workaround this issue, try `start-storybook` command with `--no-dll` option.
```sh
start-storybook -p 6006 -s public --no-dll
```Or upgrade Storybook to the preleased version which might has already resolved the issue.
```sh
npx sb@next upgrade --prerelease
```For more information, please refer to [Storybook's issue tracker](https://github.com/storybookjs/storybook/issues)