mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
13 lines
323 B
TypeScript
13 lines
323 B
TypeScript
import { NtosWindow } from '../layouts';
|
|
import { PowerMonitorContent } from './PowerMonitor';
|
|
|
|
export const NtosPowerMonitor = () => {
|
|
return (
|
|
<NtosWindow width={550} height={700} resizable>
|
|
<NtosWindow.Content scrollable>
|
|
<PowerMonitorContent />
|
|
</NtosWindow.Content>
|
|
</NtosWindow>
|
|
);
|
|
};
|