diff --git a/src/components/GoogleMap.jsx b/src/components/GoogleMap.jsx new file mode 100644 index 0000000..adf769b --- /dev/null +++ b/src/components/GoogleMap.jsx @@ -0,0 +1,13 @@ +const GoogleMap = () => { + return ( + + ) +} + +export default GoogleMap diff --git a/src/pages/PartyTime.jsx b/src/pages/PartyTime.jsx new file mode 100644 index 0000000..1e6637e --- /dev/null +++ b/src/pages/PartyTime.jsx @@ -0,0 +1,38 @@ +import React, { Suspense } from "react" +import { Link } from "react-router-dom" +const GoogleMap = React.lazy(() => import("../components/GoogleMap")) + +const PartTime = () => { + return ( + <> +
+ +

+ Celebration +

+ +
+
+
+

Location: Basque Center

+

Address: 601 W Grove St, Boise, Idaho 83702

+

Time: TBA

+

+ Dress code: Casual, please wear whatever makes you feel most + comfortable. +

+

What to bring: Yourself!

+

Parking: Lorem ipsum.

+

Transportation: Lorem ipsum.

+
+
+ loading...

}> + +
+
+
+ + ) +} + +export default PartTime