mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-21 12:29:36 +02:00
15 lines
255 B
TypeScript
15 lines
255 B
TypeScript
|
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;
|