mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-23 21:29:37 +02:00
Theme changing. Simple routing
This commit is contained in:
parent
573814ddac
commit
765418d3d2
19 changed files with 378 additions and 59 deletions
17
client/src/components/Apps/Apps.tsx
Normal file
17
client/src/components/Apps/Apps.tsx
Normal file
|
@ -0,0 +1,17 @@
|
|||
import { Link } from 'react-router-dom';
|
||||
|
||||
import classes from './Apps.module.css';
|
||||
|
||||
import { Container } from '../UI/Layout/Layout';
|
||||
import Headline from '../UI/Headline/Headline';
|
||||
|
||||
const Apps = (): JSX.Element => {
|
||||
return (
|
||||
<Container>
|
||||
<Headline title='Welcome' />
|
||||
<Link to='/settings'>settings</Link>
|
||||
</Container>
|
||||
)
|
||||
}
|
||||
|
||||
export default Apps;
|
Loading…
Add table
Add a link
Reference in a new issue