10 lines
250 B
TypeScript
10 lines
250 B
TypeScript
import { IonCol } from '@ionic/react';
|
|
import styles from './Figure.module.scss';
|
|
|
|
export const Figure = (props): React.JSX.Element => (
|
|
<IonCol size="4" className={styles.figure}>
|
|
<h6>{props.count}</h6>
|
|
<p>{props.title}</p>
|
|
</IonCol>
|
|
);
|