1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-21 12:29:36 +02:00
flame/client/src/components/Settings/Settings.tsx

15 lines
255 B
TypeScript
Raw Normal View History

2021-05-07 18:30:06 +02:00
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;