1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2025-02-16 20:53:57 +00:00
pds-2021-g2-nest/nest_frontend/routes/PageAlerts.js

19 lines
628 B
JavaScript
Raw Normal View History

2021-04-21 18:21:30 +02:00
import React from "react"
import Style from "./PageAlerts.module.css"
import classNames from "classnames"
2021-04-29 16:58:31 +02:00
import BoxFull from "../components/base/BoxFull"
2021-04-21 18:21:30 +02:00
export default function PageAlerts({ children, className, ...props }) {
return (
<div className={classNames(Style.PageAlerts, className)} {...props}>
2021-05-13 18:24:52 +02:00
<BoxFull header={"I tuoi allarmi"} className={Style.YourAlerts}>
🚧 Non implementato.
2021-04-23 02:26:16 +02:00
</BoxFull>
2021-05-13 18:24:52 +02:00
<BoxFull header={"Crea un nuovo allarme"} className={Style.CreateAlert}>
🚧 Non implementato.
2021-04-23 02:26:16 +02:00
</BoxFull>
2021-04-21 18:21:30 +02:00
</div>
)
}