import React from 'react'; import clsx from 'clsx'; import styles from './styles.module.css'; type FeatureItem = { title: string; Svg: React.ComponentType>; description: JSX.Element; }; function Feature({title, Svg, description}: FeatureItem) { return (

{title}

{description}

); } export default function HomepageFeatures(): JSX.Element { return (
Probably the best way to learn is by example. )} />
); }