import type { FC, PropsWithChildren } from 'react' import * as React from 'react' type SkillPageLayoutProps = PropsWithChildren const SkillPageLayout: FC = ({ children }) => { return (
{children}
) } export default React.memo(SkillPageLayout)