1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/nest_frontend/routes/PageAlerts.js

18 lines
628 B
JavaScript

import React from "react"
import Style from "./PageAlerts.module.css"
import classNames from "classnames"
import BoxFull from "../components/base/BoxFull"
export default function PageAlerts({ children, className, ...props }) {
return (
<div className={classNames(Style.PageAlerts, className)} {...props}>
<BoxFull header={"I tuoi allarmi"} className={Style.YourAlerts}>
🚧 Non implementato.
</BoxFull>
<BoxFull header={"Crea un nuovo allarme"} className={Style.CreateAlert}>
🚧 Non implementato.
</BoxFull>
</div>
)
}