Files
CHOMPStation2/tgui/packages/tgui_ch/interfaces/NtosStationAlertConsole.tsx
2023-05-23 17:43:01 +02:00

13 lines
351 B
TypeScript

import { NtosWindow } from '../layouts';
import { StationAlertConsoleContent } from './StationAlertConsole';
export const NtosStationAlertConsole = () => {
return (
<NtosWindow width={315} height={500} resizable>
<NtosWindow.Content scrollable>
<StationAlertConsoleContent />
</NtosWindow.Content>
</NtosWindow>
);
};