mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-13 08:55:48 +01:00
17 lines
430 B
TypeScript
17 lines
430 B
TypeScript
import { Group } 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 />
|
|
<Group align="start" position="apart" noWrap>
|
|
<AppShelf />
|
|
</Group>
|
|
<LoadConfigComponent />
|
|
</>
|
|
);
|
|
}
|