diff options
Diffstat (limited to 'src/components/Settings.tsx')
-rw-r--r-- | src/components/Settings.tsx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/components/Settings.tsx b/src/components/Settings.tsx index 7756902..6c5b501 100644 --- a/src/components/Settings.tsx +++ b/src/components/Settings.tsx @@ -100,11 +100,18 @@ export default ErrorBoundary.wrap(function Settings() { <Switch value={settings.useQuickCss} onChange={(v: boolean) => settings.useQuickCss = v} - note="Enable QuickCSS" + note="Loads styles from your QuickCss file" > Use QuickCss </Switch> {!IS_WEB && <Switch + value={settings.enableReactDevtools} + onChange={(v: boolean) => settings.enableReactDevtools = v} + note="Requires a full restart" + > + Enable React Developer Tools + </Switch>} + {!IS_WEB && <Switch value={settings.notifyAboutUpdates} onChange={(v: boolean) => settings.notifyAboutUpdates = v} note="Shows a Toast on StartUp" |