15 lines
645 B
TypeScript
15 lines
645 B
TypeScript
import { BotDashboardChannelTopicDrawers } from './dashboard-drawers/BotDashboardChannelTopicDrawers';
|
|
import { BotDashboardOperationsDrawers } from './dashboard-drawers/BotDashboardOperationsDrawers';
|
|
import { BotDashboardPrimaryDrawers } from './dashboard-drawers/BotDashboardPrimaryDrawers';
|
|
import type { BotDashboardConfigDrawersProps } from './dashboard-drawers/types';
|
|
|
|
export function BotDashboardConfigDrawers(props: BotDashboardConfigDrawersProps) {
|
|
return (
|
|
<>
|
|
<BotDashboardPrimaryDrawers {...props} />
|
|
<BotDashboardChannelTopicDrawers {...props} />
|
|
<BotDashboardOperationsDrawers {...props} />
|
|
</>
|
|
);
|
|
}
|