Files
Homarr/pages/index.tsx
2022-04-25 00:11:32 +02:00

13 lines
329 B
TypeScript

import { Welcome } from '../components/Welcome/Welcome';
import { ColorSchemeToggle } from '../components/ColorSchemeToggle/ColorSchemeToggle';
import AppShelf from '../components/AppShelf/AppShelf';
import { Center } from '@mantine/core';
export default function HomePage() {
return (
<>
<AppShelf/>
</>
);
}