mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 11:06:40 +07:00
10 lines
296 B
TypeScript
10 lines
296 B
TypeScript
import React, { memo } from 'react';
|
|
import { UserLocation } from '~/components/UserLocation';
|
|
import { DistanceBar } from '~/components/panels/DistanceBar';
|
|
|
|
export const TopLeftPanel = memo(() => (
|
|
<div className="status-panel top left">
|
|
<UserLocation />
|
|
<DistanceBar />
|
|
</div>
|
|
));
|