]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/pages/Map.js
offload some page chunks
[alttp.git] / resources / js / pages / Map.js
index 7085019c9501d85257d833c17a65dcefcbd63d91..cd3d96da485a99845fd9f61e2648b742c8deb2eb 100644 (file)
@@ -11,7 +11,7 @@ import OpenSeadragon from '../components/map/OpenSeadragon';
 import Pins from '../components/map/Pins';
 import UWSuperTiles from '../components/map/UWSuperTiles';
 
-const Map = () => {
+export const Component = () => {
        const [uwOverlay, setUWOverlay] = React.useState(false);
 
        const { activeMap } = useParams();
@@ -36,5 +36,3 @@ const Map = () => {
                </OpenSeadragon>
        </Container>;
 };
-
-export default Map;