diff --git a/src/components/control-panel/control-panel.js b/src/components/control-panel/control-panel.js index 1758b677..55c9dc27 100644 --- a/src/components/control-panel/control-panel.js +++ b/src/components/control-panel/control-panel.js @@ -1,7 +1,8 @@ import React from 'react'; import { useLayers } from '@context/map-context'; -import { Sheet, ButtonGroup, Button, Typography, IconButton } from '@mui/joy'; +import { Sheet, ButtonGroup, Button, Typography, IconButton, Box } from '@mui/joy'; import { ArrowUpward, ArrowDownward } from '@mui/icons-material'; +import apsLogo from '@images/aps-trans-logo.png'; //import { useLayers } from '@context'; @@ -12,6 +13,7 @@ export const ControlPanel = () => { const layers = [...defaultModelLayers]; return ( + <> { borderRadius: 10, }} - > { (layers.length) && + > + + { (layers.length) &&

model run date: {layers[0].properties.run_date}

} @@ -59,5 +68,6 @@ export const ControlPanel = () => { })};
+ ); }; \ No newline at end of file