import Module, { type ModuleProps } from '../index'; import LicenseCheck, { type LicenseCheckProps } from './LicenseCheck'; type Props = ModuleProps & LicenseCheckProps; const LicensedModule = ({ isFederatedComponent, moduleName, children, ...props }: Props): JSX.Element => { return ( {children} ); }; export default LicensedModule;