Files
Homarr/pages/index.tsx
Thomas "ajnart" Camlong a7a72cf9fe Remove unused imports
2022-04-30 21:35:23 +02:00

15 lines
368 B
TypeScript

import { Notification } from '@mantine/core';
import AppShelf from '../components/AppShelf/AppShelf';
import LoadConfigComponent from '../components/Config/LoadConfig';
import SearchBar from '../components/SearchBar/SearchBar';
export default function HomePage() {
return (
<>
<SearchBar />
<AppShelf />
<LoadConfigComponent />
</>
);
}