React Tutorial Guide
React Tutorial Guide
Commands:
npx create-react-app demo
cd demo
npm start
npm install [email protected]
Go to SRC-->index.js
import { BrowserRouter } from 'react-router-dom';
Replace left side with right side:
<React.StrictMode> <BrowserRouter>
<App /> <App />
</React.StrictMode> </BrowserRouter>
Go to SRC-->App.js
1. import { Switch,Route } from 'react-router-dom';
2. remove content of app instead f div tag, then write switch tag and then route like
<Switch>
<Route exact path="/" component={Navbar}/>
</Switch>
1. Public-->index.js
2. add in header section
3. <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
rel="stylesheet" />
4. paste in your .jsx files
5. import 'mdb-react-ui-kit/dist/css/mdb.min.css';
6. import "@fortawesome/fontawesome-free/css/all.min.css";