Skip to content

Commit

Permalink
feat: post-processing room with page template
Browse files Browse the repository at this point in the history
  • Loading branch information
Berke Atropat committed Oct 16, 2023
1 parent 51eb04a commit 61ea570
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
17 changes: 16 additions & 1 deletion frontend/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,22 @@ function App() {
<Route
exact
path="/postProcessingRoom"
element={<PostProcessing />}
element={
<PageTemplate
title={"Post-Processing Room"}
customComponent={<PostProcessing />}
buttonListComponent={
<HeaderActionArea
buttons={[
{
onClick: () => navigate("/"),
label: "Back to Session Overview"
}
]}
/>
}
/>
}
/>
<Route
exact
Expand Down
2 changes: 0 additions & 2 deletions frontend/src/pages/PostProcessing/PostProcessing.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import HeroText from "../../components/atoms/HeroText/HeroText";
import NavigationBar from "../../components/molecules/NavigationBar/NavigationBar";

function PostProcessing() {
return (
<>
<NavigationBar />
<HeroText text={"Post-Processing Room"} />
<HeroText
text={
Expand Down

0 comments on commit 61ea570

Please sign in to comment.