mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-16 21:23:20 +00:00
13 lines
320 B
TypeScript
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>
|
|
);
|
|
};
|