import React, { useContext } from "react" import BoxFull from "../base/BoxFull" import ReactWordcloud from "@steffo/nest-react-wordcloud" import ContextLanguage from "../../contexts/ContextLanguage" /** * A Box which displays a wordcloud. * * @param words - A list of word objects, made of a string "text" and a number "value" * @param props - Additional props to pass to the box. * @returns {JSX.Element} * @constructor */ export default function BoxWordcloud({ words, props }) { const { strings } = useContext(ContextLanguage) return (
) }