diff --git a/code/frontend/src/routes/PageAlerts.js b/code/frontend/src/routes/PageAlerts.js
index 86eee24..e1a1f90 100644
--- a/code/frontend/src/routes/PageAlerts.js
+++ b/code/frontend/src/routes/PageAlerts.js
@@ -1,12 +1,18 @@
import React from "react"
import Style from "./PageAlerts.module.css"
import classNames from "classnames"
+import BoxWithHeader from "../components/BoxWithHeader"
export default function PageAlerts({ children, className, ...props }) {
return (
- {children}
+
+ a
+
+
+ b
+
)
}
diff --git a/code/frontend/src/routes/PageAlerts.module.css b/code/frontend/src/routes/PageAlerts.module.css
index 407624d..8ae9595 100644
--- a/code/frontend/src/routes/PageAlerts.module.css
+++ b/code/frontend/src/routes/PageAlerts.module.css
@@ -1,3 +1,21 @@
.PageAlerts {
+ display: grid;
+ grid-template-areas:
+ "a"
+ "b"
+ ;
+
+ grid-gap: 10px;
+
+ width: 100%;
+ height: 100%;
}
+
+.YourAlerts {
+ grid-area: a;
+}
+
+.CreateAlert {
+ grid-area: b;
+}
\ No newline at end of file