From 2b346652875e6b84c4784d82b84beddf02657cd3 Mon Sep 17 00:00:00 2001 From: Konrad Jamrozik Date: Sat, 6 Jul 2024 23:11:07 -0700 Subject: [PATCH] WIP: add UI wireframe for new settings --- .../SettingsPanel/SettingsPanel.tsx | 46 ++++++++++++++++++- 1 file changed, 45 insertions(+), 1 deletion(-) diff --git a/web/src/components/SettingsPanel/SettingsPanel.tsx b/web/src/components/SettingsPanel/SettingsPanel.tsx index 6ec7321..89a666c 100644 --- a/web/src/components/SettingsPanel/SettingsPanel.tsx +++ b/web/src/components/SettingsPanel/SettingsPanel.tsx @@ -1,13 +1,17 @@ +/* eslint-disable max-lines-per-function */ import { Button, Card, CardHeader, + Checkbox, + Divider, List, ListItem, ListItemText, Switch, } from '@mui/material' import { useSettingsContext, type Settings } from '../../lib/settings/Settings' +import { Label } from '../utilities/Label' export function SettingsPanel(): React.JSX.Element { const settings: Settings = useSettingsContext() @@ -68,7 +72,47 @@ export function SettingsPanel(): React.JSX.Element { }} /> + + + + + + + + + + + + + + + + + +