Files
CHOMPStation2/tgui/packages/tgui_ch/interfaces/NtosIdentificationComputer.tsx
2023-05-23 17:43:01 +02:00

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>
);
};