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

13 lines
343 B
TypeScript

import { NtosWindow } from '../layouts';
import { OvermapNavigationContent } from './OvermapNavigation';
export const NtosOvermapNavigation = () => {
return (
<NtosWindow width={380} height={530} resizable>
<NtosWindow.Content scrollable>
<OvermapNavigationContent />
</NtosWindow.Content>
</NtosWindow>
);
};