diff options
Diffstat (limited to 'front/odiparpack/app/containers/Maps/Info.js')
| -rw-r--r-- | front/odiparpack/app/containers/Maps/Info.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/front/odiparpack/app/containers/Maps/Info.js b/front/odiparpack/app/containers/Maps/Info.js new file mode 100644 index 0000000..1faea09 --- /dev/null +++ b/front/odiparpack/app/containers/Maps/Info.js @@ -0,0 +1,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 + + {' '} + <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; |
