mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-15 20:33:47 +00:00
17 lines
388 B
TypeScript
17 lines
388 B
TypeScript
import * as Panel from '../PanelUtils';
|
|
|
|
import GeneralPanelForm from './GeneralPanelForm';
|
|
import UrlPresetsForm from './UrlPresetsForm';
|
|
import ViewSettingsForm from './ViewSettingsForm';
|
|
|
|
export default function GeneralPanel() {
|
|
return (
|
|
<>
|
|
<Panel.Header>Settings</Panel.Header>
|
|
<GeneralPanelForm />
|
|
<ViewSettingsForm />
|
|
<UrlPresetsForm />
|
|
</>
|
|
);
|
|
}
|