aboutsummaryrefslogtreecommitdiff
path: root/modern/src/reports/ReplayPage.js
blob: 826b361afa9f7c20848369284a2d55b8bde9e471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import React from 'react';
import { makeStyles } from '@material-ui/core';
import MainToolbar from '../MainToolbar';
import Map from '../map/Map';

const useStyles = makeStyles(theme => ({
  root: {
    height: '100%',
    display: 'flex',
    flexDirection: 'column',
  },
  content: {
    flexGrow: 1,
    overflow: 'hidden',
    display: 'flex',
    flexDirection: 'row',
    [theme.breakpoints.down('xs')]: {
      flexDirection: 'column-reverse',
    }
  },
  mapContainer: {
    flexGrow: 1,
  },
}));

const ReplayPage = () => {
  const classes = useStyles();

  return (
    <div className={classes.root}>
      <MainToolbar />
      <Map>
      </Map>
    </div>
  );
}

export default ReplayPage;