cra-template-graycor
v1.0.4
Published
GRAYCOR CRA template with: react router, msal, apollo-client, react-bootstrap, graphql, prop-types, mui
Downloads
2
Maintainers
Readme
cra-template-graycor
CRA template with: react router, msal, apollo-client, react-bootstrap, graphql, prop-types, mui.
⚗️ Technologies list
🚀 Start using it
To use this template for your app you can run:
npx create-react-app my-app --template graycor
or
yarn create react-app my-app --template graycor
The --template
parameter points to this template, note that cra-template-
prefix is omitted.
⚠️ Warning
Cloning this repo pulls down the template only, not a bundled and configured Create React App.
🧬 Template structure
This is the structure of the files in the template:
│
├── public # public files (favicon, .htaccess, manifest, ...)
├── src # source files
│ ├── components
│ ├── config # Configuration Files (MSAL, GraphQL)
│ ├── state # Custom State
│ ├── screens # All the User Interface
│ ├── utils # Utilities
│ ├── App.js
│ ├── index.js
│ ├── reportWebVitals.js
│ └── setupTests.js
├── .eslintrc.js
├── .gitignore
├── .prettierrc.js
├── package.json
└── README.md
📖 Learn More
This package includes scripts and configuration used by Create React App.
Please refer to its documentation:
- Getting Started – How to create a new app.
- User Guide – How to develop apps bootstrapped with Create React App.