]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/pages/Map.js
basic map pins
[alttp.git] / resources / js / components / pages / Map.js
index 50a28fbfe1bf89a731addb2607f34bc5b2197c55..d8a10393d12a0c70292ceb4307e682594c4c4569 100644 (file)
@@ -4,6 +4,7 @@ import { useTranslation } from 'react-i18next';
 
 import Buttons from '../map/Buttons';
 import OpenSeadragon from '../map/OpenSeadragon';
+import Pins from '../map/Pins';
 
 const Map = () => {
        const container = React.useRef();
@@ -16,6 +17,7 @@ const Map = () => {
                                <Buttons />
                        </div>
                        <div ref={container} style={{ height: '80vh' }} />
+                       <Pins />
                </OpenSeadragon>
        </Container>;
 };