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

13 lines
320 B
TypeScript

import { NtosWindow } from '../layouts';
import { ShutoffMonitorContent } from './ShutoffMonitor';
export const NtosShutoffMonitor = () => {
return (
<NtosWindow width={627} height={700} resizable>
<NtosWindow.Content>
<ShutoffMonitorContent />
</NtosWindow.Content>
</NtosWindow>
);
};