mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 13:04:19 +00:00
18 lines
628 B
JavaScript
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>
|
|
)
|
|
}
|