import type { ReactNode } from "react"; interface IProps { title: string; children?: ReactNode; } const Feature = ({ title, children }: IProps) => (
{title}

{children}

); export default Feature;