diff --git a/src/SharePage.js b/src/SharePage.js index a14a59b..88f82bf 100644 --- a/src/SharePage.js +++ b/src/SharePage.js @@ -1,5 +1,5 @@ import React from 'react'; -import { Stack } from '@mui/material'; +import { Stack, TextField } from '@mui/material'; import Map from "./map"; import { useLoadScript } from "@react-google-maps/api" import SharePageList from './SharePageList'; @@ -11,7 +11,7 @@ const SharePage = ({ concerts, userLocation, mapStyle }) => { }); const middleIndex = Math.ceil(concerts.length / 2); - const concerts1 = concerts.slice(0,middleIndex); + const concerts1 = concerts.slice(0, middleIndex); const concerts2 = concerts.slice(middleIndex); return ( @@ -19,7 +19,7 @@ const SharePage = ({ concerts, userLocation, mapStyle }) => { {isLoaded ? : null} - +