mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-16 21:23:20 +00:00
13 lines
291 B
TypeScript
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>
|
|
);
|
|
};
|