mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
This is in need of some serious refactoring so that https://github.com/dcs-liberation/dcs_liberation/issues/2388 can be fixed.
10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
interface LocationTooltipTextProps {
|
|
name: string;
|
|
}
|
|
|
|
export const LocationTooltipText = (props: LocationTooltipTextProps) => {
|
|
return <h3 style={{ margin: 0 }}>{props.name}</h3>;
|
|
};
|
|
|
|
export default LocationTooltipText;
|