1 import React from 'react';
2 import { Container } from 'react-bootstrap';
3 import { useTranslation } from 'react-i18next';
5 import Buttons from '../map/Buttons';
6 import OpenSeadragon from '../map/OpenSeadragon';
9 const container = React.useRef();
10 const { t } = useTranslation();
12 return <Container fluid>
13 <OpenSeadragon ref={container}>
14 <div className="d-flex align-items-center justify-content-between">
15 <h1>{t('map.heading')}</h1>
18 <div ref={container} style={{ height: '80vh' }} />