import { ShadowContainer } from 'components/design/ShadowContainer' export interface SkillsSectionProps { title: string children: React.ReactNode } export const SkillsSection: React.FC = (props) => { const { title, children } = props return (

{title}

{children}
) }