Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
index.js 424 B
Newer Older
  • Learn to ignore specific revisions
  • import React from 'react';
    import styles from './styles.module.css'
    import useBaseUrl from "@docusaurus/useBaseUrl";
    
    export default function HomepageList(props) {
      return (
        <div className={styles.wholeCard}>
          <p>{props.text}</p>
          <img className='margin-vert--md' src={useBaseUrl(props.img)} />
    
          <h3 className='margin-bottom--xs'>{props.title}</h3>
          <span>{props.subtitle}</span>
        </div>
      ) 
    }