mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
16 lines
436 B
JavaScript
16 lines
436 B
JavaScript
|
import React, { useContext } from "react"
|
||
|
import Style from "./Empty.module.css"
|
||
|
import classNames from "classnames"
|
||
|
import ContextLanguage from "../../contexts/ContextLanguage"
|
||
|
|
||
|
|
||
|
export default function Empty({ children, className, ...props }) {
|
||
|
const { strings } = useContext(ContextLanguage)
|
||
|
|
||
|
return (
|
||
|
<i className={classNames(Style.Empty, className)} {...props}>
|
||
|
{strings.emptyMenu}
|
||
|
</i>
|
||
|
)
|
||
|
}
|