mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-16 02:06:21 +01:00
15 lines
369 B
TypeScript
15 lines
369 B
TypeScript
import AppShelf from '../components/AppShelf/AppShelf';
|
|
import { Center, Group } from '@mantine/core';
|
|
import LoadConfigComponent from '../components/Config/LoadConfig';
|
|
import SearchBar from '../components/SearchBar/SearchBar';
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<>
|
|
<SearchBar />
|
|
<AppShelf />
|
|
<LoadConfigComponent />
|
|
</>
|
|
);
|
|
}
|