feat(themeCreator): add svelte theme creator

This commit is contained in:
sethburkart123
2024-09-20 10:37:26 +10:00
parent 548dcbf34e
commit 6267a77a71
12 changed files with 377 additions and 144 deletions
+1 -8
View File
@@ -1,14 +1,7 @@
import type { SettingsState } from './AppProps';
export interface SettingsList {
title: string;
id: number;
description: string;
Component: any; /* TODO: Give this a type */
props?: any;
}
export interface SettingsProps {
settingsState: SettingsState;
setSettingsState: React.Dispatch<React.SetStateAction<SettingsState>>;
}
}