1
0
mirror of https://github.com/hexolan/panels.git synced 2026-05-20 03:29:23 +01:00
Files
panels/services/frontend/src/pages/Home.tsx
T
hexolan 0e21fe9483 feat(frontend): updates to latest mantine attributes
Pending adaption to breaking changes for element attributes since
changed within existing components. Adjustments to `ta`, `gap`, `fw`,
etc.
2026-05-14 14:53:04 +01:00

17 lines
368 B
TypeScript

import { Container, Title, Stack, Divider } from '@mantine/core'
import HomePostFeed from '../components/HomePostFeed'
const Homepage = () => {
return (
<Container mt='xl'>
<Title>Feed</Title>
<Divider my='md' variant='dotted' />
<Stack my='lg' gap='md'>
<HomePostFeed />
</Stack>
</Container>
)
}
export default Homepage