-
Notifications
You must be signed in to change notification settings - Fork 0
/
temp.jsx
67 lines (60 loc) · 2.05 KB
/
temp.jsx
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
64
65
66
67
import settingHeading from '../images/settingheader.png'
import SettingsLeft from '../components/SettingsLeft';
import {Link, useNavigate} from "react-router-dom";
import Button from '@mui/material/Button';
const Settings = () => {
return (
<div className="setting-page">
<SettingsLeft />
<div>
<div>
<div>
<img src={settingHeading} alt="setting header" />
</div>
<br></br>
<br></br>
<br></br>
<div className='settingFontSize'>
Fetch new posts/feeds every
</div>
<input type="radio" id="age1" name="age" value="30" />
<label for="age1" className='settingFontSize'>Instantly</label>
<input type="radio" id="age1" name="age" value="30" />
<label for="age1" className='settingFontSize'>Every Hour</label>
<input type="radio" id="age1" name="age" value="30" />
<label for="age1" className='settingFontSize'>Every Day</label>
<input type="radio" id="age1" name="age" value="30" />
<label for="age1" className='settingFontSize'>Every Week</label>
<input type="radio" id="age1" name="age" value="30" />
<label for="age1" className='settingFontSize'>Every 2 Weeks </label>
<div></div>
</div>
<br></br>
<br></br>
<br></br>
<br></br>
<div className='settingFontSize'>
Prioritise posts/feeds if it includes:
</div>
<div>
<input className="inputBox" type="text" />
</div>
<div className='settingFontSize'>
Filter posts/feeds if it includes:
</div>
<div>
<input className="inputBox" type="text" />
</div>
<Button variant="outlined" size = "small" color="primary">
SAVE
</Button>
</div>
<Link to="/main">
<Button variant="outlined" size = "small" color="primary">
BACK
</Button>
</Link>
</div>
);
};
export default Settings;