import React from 'react'; import clsx from 'clsx'; import styles from './styles.module.css'; const FeatureList = [ { title: 'History sync', description: ( <> ), }, { title: 'Speedy search', description: ( <> ), }, { title: 'Extra context', description: ( <> ), }, ]; function Feature({ Svg, title, description }) { return (

{title}

{description}

); } export default function HomepageFeatures() { return (
{FeatureList.map((props, idx) => ( ))}
); }