all repos — caroster @ 86db106f053562bc10976f2c0c8d0d5520291370

[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;