react typescript scss

Solutions on MaxInterview for react typescript scss by the best coders in the world

showing results for - "react typescript scss"
Yasmine
20 Feb 2016
1// Initialize React app with Typescript
2// 	$ npx create-react-app yourProjectName --template typescript
3
4// Go into project folder
5//  $ cd yourProjectName
6
7// Install node-sass dependency
8//  $ npm i node-sass
9
10// You can now import .scss / .sass files into your React components 
11// and use Typescript too. Happy coding!