all repos — caroster @ 1e4cd2561ddba0d298160a89d3e9b78da1e68fe2

[Octree] Group carpool to your event https://caroster.io

frontend/containers/Map/MapActions.tsx (view raw)

 1import {Box, Paper} from '@mui/material';
 2import SearchField from './SearchField';
 3
 4type Props = {};
 5
 6const MapActions = (props: Props) => {
 7  return (
 8    <Box component={Paper} p={1} maxWidth={350}>
 9      <SearchField />
10    </Box>
11  );
12};
13
14export default MapActions;