mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 03:33:21 +00:00
13 lines
368 B
TypeScript
13 lines
368 B
TypeScript
import { NtosWindow } from '../layouts';
|
|
import { IdentificationComputerContent } from './IdentificationComputer';
|
|
|
|
export const NtosIdentificationComputer = () => {
|
|
return (
|
|
<NtosWindow width={600} height={700} resizable>
|
|
<NtosWindow.Content scrollable>
|
|
<IdentificationComputerContent ntos />
|
|
</NtosWindow.Content>
|
|
</NtosWindow>
|
|
);
|
|
};
|