Files
Homarr/pages/index.tsx

19 lines
550 B
TypeScript
Raw Normal View History

import { Group, Notification } from '@mantine/core';
2022-04-25 00:11:32 +02:00
import AppShelf from '../components/AppShelf/AppShelf';
import CalendarComponent from '../components/calendar/CalendarComponent';
2022-04-27 03:12:53 +02:00
import LoadConfigComponent from '../components/Config/LoadConfig';
2022-04-27 23:19:02 +02:00
import SearchBar from '../components/SearchBar/SearchBar';
2022-04-24 22:36:47 +02:00
export default function HomePage() {
return (
<>
2022-04-27 23:19:02 +02:00
<SearchBar />
2022-05-03 19:52:09 +02:00
<Group align={'start'} position="apart" noWrap>
<AppShelf />
<CalendarComponent />
</Group>
2022-04-27 23:19:02 +02:00
<LoadConfigComponent />
2022-04-24 22:36:47 +02:00
</>
);
}