]> git.localhorst.tv Git - alttp.git/blob - resources/js/components/tracker/Map/index.js
restructure map for future
[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 <div className="tracker-map">
7                 <Overworld />
8         </div>;
9 };
10
11 export default Map;