Skip to content

Commit c21de62

Browse files
committed
Prepare route for LOD Barcamp event page
1 parent 14b8867 commit c21de62

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

src/AppRoutes.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import InfoScreenPrivacyContainer from '@/ui/screens/info-pages/privacy/InfoScre
1515
import QuestionPageRouter from '@/ui/screens/question-pages/QuestionPageRouter';
1616
import ImpressumPage from './ui/screens/legal/ImpressumPage';
1717
import DataProtection from './ui/screens/legal/DataProtection';
18+
import LodBarcamp from "@/ui/screens/events/LodBarcamp";
1819

1920
const AppRoutes = () => (
2021
<Routes>
@@ -37,6 +38,7 @@ const AppRoutes = () => (
3738
<Route path="/bielefunke" element={<LandingPage runway="bielefunke" />}/>
3839
<Route path="/wolfenbuettel" element={<LandingPage runway="wolfenbuettel" />}/>
3940
<Route path="/wolfenbüttel" element={<LandingPage runway="wolfenbuettel" />}/>
41+
<Route path="/lod-barcamp-bielefeld" element={<LodBarcamp/>}/>
4042
</Routes>
4143
);
4244

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import React from "react";
2+
3+
const LodBarcamp = () => {
4+
return (
5+
<div>
6+
TODO
7+
</div>
8+
);
9+
}
10+
11+
export default LodBarcamp;

0 commit comments

Comments
 (0)