import React from 'react'; import styles from './RestrictedContent.css'; import I18n from 'coral-i18n/modules/i18n/i18n'; const lang = new I18n(); export default ({children, restricted, message = lang.t('framework.content_not_available'), restrictedComp}) => { if (restricted) { return restrictedComp ? restrictedComp : messageBox(message); } else { return (