🔥 Remove search bar from index

This commit is contained in:
Aj - Thomas
2022-05-16 13:54:54 +02:00
committed by ajnart
parent ab1e2a32a0
commit e75ff14975

View File

@@ -6,7 +6,6 @@ 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,12 +52,11 @@ export default function HomePage(props: any) {
setConfig(initialConfig);
}, [initialConfig]);
return (
<>
<SearchBar style={{ width: '100%'}} />
<>
<Group align="start" position="apart" noWrap>
<AppShelf />
</Group>
<LoadConfigComponent />
<LoadConfigComponent />
</>
);
}