useLocalize
How to use
import { Plugin } from '@root'
const MyCustomComponent = () => {
const localization = Plugin.useLocalize()
return (
<div>
<p>title: {localization.myLocalizedTitle}</p>
</div>
)
}
export default MyCustomComponent{
[...]
error_pages: {
not_found: "404 page not found",
internal_error: "500 Internal error occurred"
}
[...]
}Last updated