mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
13 lines
351 B
TypeScript
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>
|
|
);
|
|
};
|