import * as React from "react"; import { Grid } from "semantic-ui-react"; import Module from "./components/Module"; interface Props { children: any; } const MagaMenuInternal: any = ({ children }: Props) => ( {children} ); MagaMenuInternal.Module = Module; export default MagaMenuInternal;