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
2021-05-18 02:48:34 +02:00

21 lines
755 B
JavaScript

import React, { useContext } from "react"
import Style from "./PageAlerts.module.css"
import classNames from "classnames"
import BoxFull from "../components/base/BoxFull"
import ContextLanguage from "../contexts/ContextLanguage"
export default function PageAlerts({ children, className, ...props }) {
const { strings } = useContext(ContextLanguage)
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>
)
}