mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
12 lines
374 B
JavaScript
12 lines
374 B
JavaScript
import React, { useContext } from "react"
|
|
import BoxWordcloud from "../base/BoxWordcloud"
|
|
import ContextLanguage from "../../contexts/ContextLanguage"
|
|
|
|
|
|
export default function BoxVisualizationWordcloud({ words, ...props }) {
|
|
const {strings} = useContext(ContextLanguage)
|
|
|
|
return (
|
|
<BoxWordcloud header={strings.wordcloud} words={words} {...props}/>
|
|
)
|
|
}
|