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 18:50:02 +02:00

21 lines
757 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={strings.alertTitle} className={Style.YourAlerts}>
{strings.notImplemented}
</BoxFull>
<BoxFull header={strings.alertCreate} className={Style.CreateAlert}>
{strings.notImplemented}
</BoxFull>
</div>
)
}