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

13 lines
291 B
TypeScript

import { NtosWindow } from '../layouts';
import { RCONContent } from './RCON';
export const NtosRCON = () => {
return (
<NtosWindow width={630} height={440} resizable>
<NtosWindow.Content scrollable>
<RCONContent />
</NtosWindow.Content>
</NtosWindow>
);
};