Files
Homarr/pages/index.tsx

15 lines
368 B
TypeScript
Raw Normal View History

2022-04-30 21:35:23 +02:00
import { Notification } from '@mantine/core';
2022-04-25 00:11:32 +02:00
import AppShelf from '../components/AppShelf/AppShelf';
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-04-27 03:12:53 +02:00
<AppShelf />
2022-04-27 23:19:02 +02:00
<LoadConfigComponent />
2022-04-24 22:36:47 +02:00
</>
);
}