mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-11 22:54:46 +08:00
Theme changing. Simple routing
This commit is contained in:
15
client/src/components/Settings/Settings.tsx
Normal file
15
client/src/components/Settings/Settings.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Link } from 'react-router-dom';
|
||||
|
||||
import Themer from '../Themer/Themer';
|
||||
|
||||
const Settings = (): JSX.Element => {
|
||||
return (
|
||||
<div>
|
||||
<h1>settings</h1>
|
||||
<Link to='/'>Home</Link>
|
||||
<Themer />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default Settings;
|
||||
Reference in New Issue
Block a user