-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
63 lines (53 loc) · 1.62 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import { useState } from 'react';
import './App.css';
import Alerts from './components/Alerts';
import Navbar from './components/Navbar';
import TextForm from './components/TextForm';
import AboutUs from './components/AboutUs'
import React from "react";
import {BrowserRouter as Router, Routes, Route} from 'react-router-dom'
function App() {
// Stat for light and dark mode
const [mode, setMode] = useState('light');
// State for alert
const [alert, setAlert] = useState(null);
const showAlert = (message, type) => {
setAlert({
msg: message,
type: type
});
setTimeout(() => {
setAlert(null)
}, 1500)
}
const toggleMode = () => {
if (mode === 'light') {
setMode('dark');
document.body.style.backgroundColor = '#042743';
showAlert("Dark mode has been enabled", "success")
}
else {
setMode('light');
document.body.style.backgroundColor = 'white';
showAlert("Light mode has been enabled", "success")
}
}
return(
<>
<Router>
{/* Importing navbar component */}
<Navbar title="TU" aboutText="About us" mode={mode} toggleMode={toggleMode} />
{/* Alert */}
<Alerts alert={alert} />
{/*Importing TextForm component */}
<div className="container">
<Routes>
<Route path='/' element={<TextForm showAlert={showAlert} heading="Enter the text to analyze" mode={mode} />} />
<Route path='/about' element={<AboutUs toggleMode={toggleMode} mode={mode} />} />
</Routes>
</div>
</Router>
</>
);
}
export default App;