You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
To begin: npx create-react-app my-app cd my-app npm start
Delete all default mark up.
For components create folder #components in #src folder and place there your react components.In my project you can see: Form.jsx, FormInput.jsx, List.jsx.You can create as many components as you want and name it how you like.
In this project Material-UI is used.To install run: npm install @material-ui/core
Material-UI was developed based on the Roboto font.The Roboto font will not be automatically loaded into Material-UI.So be sure to install it.
To install run: npm install fontsource-roboto
Then import it in "index.js". To do so write in "index.js": import 'fontsource-roboto';