mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 16:33:51 +00:00
7c19c52332
merge with directory
16 lines
348 B
TypeScript
16 lines
348 B
TypeScript
import * as Panel from '../../panel-utils/PanelUtils';
|
|
|
|
import ClientList from './ClientList';
|
|
|
|
export default function ClientControlPanel() {
|
|
return (
|
|
<Panel.Section>
|
|
<Panel.Card>
|
|
<Panel.SubHeader>Manage clients</Panel.SubHeader>
|
|
<Panel.Divider />
|
|
<ClientList />
|
|
</Panel.Card>
|
|
</Panel.Section>
|
|
);
|
|
}
|