import React from 'react'; import clsx from 'clsx'; import styles from './styles.module.css'; const FeatureList = [ { title: 'History sync', Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default, description: ( <> ), }, { title: 'Find it fast', Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default, description: ( <> ), }, { title: 'All the data', Svg: require('@site/static/img/undraw_docusaurus_react.svg').default, description: ( <> ), }, ]; function Feature({ Svg, title, description }) { return (

{title}

{description}

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