mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
13 lines
347 B
TypeScript
13 lines
347 B
TypeScript
import { NtosWindow } from '../layouts';
|
|
import { SupermatterMonitorContent } from './SupermatterMonitor';
|
|
|
|
export const NtosSupermatterMonitor = () => {
|
|
return (
|
|
<NtosWindow width={600} height={400} resizable>
|
|
<NtosWindow.Content scrollable>
|
|
<SupermatterMonitorContent />
|
|
</NtosWindow.Content>
|
|
</NtosWindow>
|
|
);
|
|
};
|