� Module styling

This commit is contained in:
Aj - Thomas
2022-05-16 15:55:22 +02:00
committed by ajnart
parent 20a37b678f
commit 8392dcef20
5 changed files with 22 additions and 17 deletions

View File

@@ -6,6 +6,7 @@ import fs from 'fs';
import { useEffect } from 'react';
import AppShelf from '../components/AppShelf/AppShelf';
import LoadConfigComponent from '../components/Config/LoadConfig';
import SearchBar from '../components/SearchBar/SearchBar';
import { Config } from '../tools/types';
import { useConfig } from '../tools/state';
@@ -53,9 +54,7 @@ export default function HomePage(props: any) {
}, [initialConfig]);
return (
<>
<Group align="start" position="apart" noWrap>
<AppShelf />
</Group>
<AppShelf />
<LoadConfigComponent />
</>
);