diff --git a/src/components/NewUI/App.tsx b/src/components/NewUI/App.tsx index d611cef..136a741 100644 --- a/src/components/NewUI/App.tsx +++ b/src/components/NewUI/App.tsx @@ -1,4 +1,3 @@ -import Event from './Event'; import Group from './Group'; import UIPrimaryTitle from './UIPrimaryTitle'; @@ -24,15 +23,15 @@ export default function App() { group: 'TJHSST Track and Field', location: 'Ashburn, Virginia', }, + { + time: '5:00 PM to 8:00 PM', + title: 'End of Year Party', + group: 'TJHSST 2022', + location: 'Dulles, Virginia', + }, ]} name="TJHSST 2022" /> - ); } diff --git a/src/components/NewUI/Group.tsx b/src/components/NewUI/Group.tsx index 9010671..073ac3c 100644 --- a/src/components/NewUI/Group.tsx +++ b/src/components/NewUI/Group.tsx @@ -7,7 +7,7 @@ export type IGroup = { export default function Group({ events, name }: IGroup) { return ( -
+

{name}

{events.map((event) => (