Open phillipsja97 opened 4 years ago
WHEN the you run the NPM Start script you should see a working file that has an h1 tag in the home screen of digiCaddie.
h1 tag
/workspace/projects/personal
npx create-react-app digiCaddie
digiCaddie
styles
_variables.scss
index.scss
npm install eslint-config-airbnb-base --save-dev npm install bootstrap --save npm install axios --save npm install firebase --save```
.eslintrc
"parserOptions": { "ecmaVersion": 6, "sourceType": "module" }, "extends": ["airbnb-base", "react-app"], "globals": { "document": true, "window": true, "allowTemplateLiterals": true }, "rules": { "no-console": [1, { "allow": ["error"] }], "no-debugger": 1, "class-methods-use-this": 0, "linebreak-style": 0 } }```
User Story
AC
WHEN the you run the NPM Start script you should see a working file that has an
h1 tag
in the home screen of digiCaddie.DevNotes
/workspace/projects/personal
called digiCaddie_capstone.npx create-react-app digiCaddie
digiCaddie
by using git init scripts from the repo.styles
and create a file called_variables.scss
and then move theindex.scss
file into this folder..eslintrc
and insert this code in the file: