2021-04-21 16:21:30 +00:00
|
|
|
import React from "react"
|
|
|
|
import Style from "./PageAlerts.module.css"
|
|
|
|
import classNames from "classnames"
|
2021-04-23 00:26:16 +00:00
|
|
|
import BoxFull from "../components/BoxFull"
|
2021-04-21 16:21:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
export default function PageAlerts({ children, className, ...props }) {
|
|
|
|
return (
|
|
|
|
<div className={classNames(Style.PageAlerts, className)} {...props}>
|
2021-04-23 00:26:16 +00:00
|
|
|
<BoxFull header={"Your alerts"} className={Style.YourAlerts}>
|
2021-04-25 15:22:52 +00:00
|
|
|
🚧 Not implemented.
|
2021-04-23 00:26:16 +00:00
|
|
|
</BoxFull>
|
|
|
|
<BoxFull header={"Create new alert"} className={Style.CreateAlert}>
|
2021-04-25 15:22:52 +00:00
|
|
|
🚧 Not implemented.
|
2021-04-23 00:26:16 +00:00
|
|
|
</BoxFull>
|
2021-04-21 16:21:30 +00:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|