Skip to content

Commit

Permalink
feat: Add InboxItemPage component
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Scully authored and Sean Scully committed Feb 9, 2024
1 parent d6db695 commit f3bf06f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/frontend-design-poc/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { HelloWorld } from "./components/HelloWorld";
import { PageNotFound } from "./pages/PageNotFound";
import { PageLayout } from "./pages/PageLayout";
import { Inbox } from "./pages/Inbox";
import { InboxItemPage } from "./pages/InboxItemPage";

import styles from "./app.module.css";

Expand All @@ -13,6 +14,7 @@ function App() {
<Route element={<PageLayout />}>
<Route path="/" element={<HelloWorld />} />
<Route path="/inbox" element={<Inbox />} />
<Route path="/inbox/:id" element={<InboxItemPage />} />
<Route path="*" element={<PageNotFound />} />
</Route>
</Routes>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import styles from "./inboxItemPage.module.css";

export const InboxItemPage = () => {
return (
<div className={styles.itemInboxPage}>
</div>
);
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.itemInboxPage {
display: flex;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { InboxItemPage } from "./InboxItemPage.tsx";

0 comments on commit f3bf06f

Please sign in to comment.