Create react app starter files, with LESS configured. See sections below for how to run and use the app.
Note: You can checkout the react + webpack5 starter kit instead, if you want something other than create react app.
Install dependencies with the yarn command below if you are using yarn, or install dependencies with the npm command below if you are using npm.
yarn install
OR
npm install
Use the command yarn command below to run the application at localhost:3000 if you are using yarn, use the npm command if you are using npm.
yarn run dev
or
npm run dev
The LESS code you write in the less
folder is transpiled to CSS and sent into the css
folder. Import the generated CSS files in your js files (not the LESS files).
Visit the create react app documentation for how to interact with create react app.