mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-17 21:53:05 +00:00
13 lines
343 B
TypeScript
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>
|
|
);
|
|
};
|