]> git.localhorst.tv Git - alttp.git/blob - resources/js/components/tracker/Map/index.js
246403c1b22e2bbfe1d07d95b4840d4182b6793f
[alttp.git] / resources / js / components / tracker / Map / index.js
1 import React from 'react';
2
3 import Overworld from './Overworld';
4
5 const Map = () => {
6         return <>
7                 <Overworld />
8         </>;
9 };
10
11 export default Map;