Skip to content

Latest commit

 

History

History
34 lines (18 loc) · 1.2 KB

README.md

File metadata and controls

34 lines (18 loc) · 1.2 KB

Create React App Template

My versions of CRA templates

Two templates are available for installation:

cra-template-present-g

Template based on Create React App

SASS / SCSS support is added to the template, ESLint and Prettier are installed

You can use the template with the CRA command:

npx create-react-app your-project --template present-g

If you are already in the desired directory, use . Instead of your-project:

npx create-react-app . --template present-g

cra-template-present-g-ts

Template based on Create React App version for TypeScript

SASS / SCSS support is added to the template, ESLint and Prettier are installed configured for TypeScript

You can use the template with the CRA command:

npx create-react-app your-project --template present-g-ts

If you are already in the desired directory, use . Instead of your-project:

npx create-react-app . --template present-g-ts

Happy use;)