import { HasChildren } from "@granity/helpers"; import { FC } from "react"; type Props = HasChildren; const CoreLayout: FC = ({ children }) => { return ( {children} ); }; export default CoreLayout;