mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-08 17:03:53 +00:00
7c19c52332
merge with directory
28 lines
771 B
TypeScript
28 lines
771 B
TypeScript
import { Alert, AlertDescription, AlertIcon } from '@chakra-ui/react';
|
|
|
|
import * as Panel from '../../panel-utils/PanelUtils';
|
|
|
|
import EditorSettingsForm from './EditorSettingsForm';
|
|
|
|
export default function InterfacePanel() {
|
|
return (
|
|
<>
|
|
<Panel.Header>Interface</Panel.Header>
|
|
<Panel.Section>
|
|
<Alert status='info' variant='ontime-on-dark-info'>
|
|
<AlertIcon />
|
|
<AlertDescription>
|
|
Interface settings
|
|
<br />
|
|
<br />
|
|
These concern settings that are applied to this user in this browser.
|
|
<br />
|
|
It will not affect other users or other browsers.
|
|
</AlertDescription>
|
|
</Alert>
|
|
</Panel.Section>
|
|
<EditorSettingsForm />
|
|
</>
|
|
);
|
|
}
|