diff --git a/.gitignore b/.gitignore index 85e092c..8f6ec93 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ yarn-debug.log* yarn-error.log* .vscode/ +twitter-state.ts diff --git a/src/components/NewUI/App.tsx b/src/components/NewUI/App.tsx index 1f5cb60..d611cef 100644 --- a/src/components/NewUI/App.tsx +++ b/src/components/NewUI/App.tsx @@ -1,4 +1,5 @@ import Event from './Event'; +import Group from './Group'; import UIPrimaryTitle from './UIPrimaryTitle'; export default function App() { @@ -15,11 +16,16 @@ export default function App() { }} > WheelShare - + {name} + + {events.map((event) => ( + + ))} + + + ); + // +}