mirror of
https://github.com/hexolan/panels.git
synced 2026-05-20 03:29:23 +01:00
0e21fe9483
Pending adaption to breaking changes for element attributes since changed within existing components. Adjustments to `ta`, `gap`, `fw`, etc.
17 lines
368 B
TypeScript
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 |