Draw supply routes on the react map.

https://github.com/dcs-liberation/dcs_liberation/issues/2039
This commit is contained in:
Dan Albert
2022-03-02 23:10:11 -08:00
parent 0bdb4ac894
commit 9a2c10a98f
15 changed files with 280 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
interface SplitLinesProps {
items: string[];
}
const SplitLines = (props: SplitLinesProps) => {
return (
<>
{props.items.map((text) => {
return (
<>
{text}
<br />
</>
);
})}
</>
);
};
export default SplitLines;