summaryrefslogtreecommitdiffstats
path: root/front/odiparpack/app/containers/Maps/Info.js
blob: 1faea0979ad86546c7a23dd3d2cafb99c17f98fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React from 'react';
import Type from 'ba-styles/Typography.scss';
import { Typography } from '@material-ui/core';

class Info extends React.Component {
  render() {
    return (
      <Typography className={Type.textWarning} gutterBottom style={{ marginBottom: 20 }}>
        This demo may not working properly because it has not added Google Map api key. To add Your own Google Map api key please follow this link
        &nbsp;
        {' '}
        <a rel="noopener noreferrer" style={{ wordWrap: 'break-word' }} target="_blank" href="https://developers.google.com/maps/documentation/javascript/get-api-key">https://developers.google.com/maps/documentation/javascript/get-api-key</a>
      </Typography>
    );
  }
}

export default Info;