Skip to content

Instantly share code, notes, and snippets.

@vigneshv01-ship-it
Created March 29, 2022 04:42
Show Gist options
  • Save vigneshv01-ship-it/ecccd87169581474134525e071181b45 to your computer and use it in GitHub Desktop.
Save vigneshv01-ship-it/ecccd87169581474134525e071181b45 to your computer and use it in GitHub Desktop.
React Code snippets
## Terminal 1
# Create React App with TS
npx create-react-app my-app --template typescript
# Install Bootstrap
npm install react-bootstrap [email protected]
npm start
## Terminal 2
# Install SASS
npm install react-bootstrap [email protected]
# Create sass and css directories
# Move css files to sass folder and rename to .scss files
# Fix path in App.tsx and index.tsx accordingly (say, import './sass/App.scss';)
# Add the below in package.json under scripts
# "sass" : "sass src/Sass:src/Css --watch --no-source-map"
npm run sass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment