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

17 lines
365 B
TypeScript
Raw Normal View History

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