From da31832a1e99f7defd4e696bf88a4284fa4062e6 Mon Sep 17 00:00:00 2001 From: ajnart Date: Thu, 26 May 2022 18:19:32 +0200 Subject: [PATCH] :dizzy: Add download module on the main page --- src/pages/index.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index c9c344e5f..c127e954c 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -8,6 +8,8 @@ import LoadConfigComponent from '../components/Config/LoadConfig'; import { Config } from '../tools/types'; import { useConfig } from '../tools/state'; import { migrateToIdConfig } from '../tools/migrate'; +import { ModuleWrapper } from '../components/modules/moduleWrapper'; +import { DownloadsModule } from '../components/modules'; export async function getServerSideProps({ req, @@ -55,6 +57,7 @@ export default function HomePage(props: any) { <> + ); }