mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 11:44:40 +00:00
improve default settings
This commit is contained in:
@@ -3,7 +3,14 @@ import Accordion from '../components/Accordian';
|
|||||||
import { useState } from 'react';
|
import { useState } from 'react';
|
||||||
|
|
||||||
export default function ThemeCreator() {
|
export default function ThemeCreator() {
|
||||||
const [theme, setTheme] = useState();
|
const [theme, setTheme] = useState<CustomTheme>({
|
||||||
|
name: '',
|
||||||
|
description: '',
|
||||||
|
defaultColour: '',
|
||||||
|
CanChangeColour: false,
|
||||||
|
CustomCSS: '',
|
||||||
|
CustomImages: []
|
||||||
|
});
|
||||||
|
|
||||||
const handleSave = (value: string) => {
|
const handleSave = (value: string) => {
|
||||||
// Save the theme
|
// Save the theme
|
||||||
|
|||||||
Reference in New Issue
Block a user