Files
HKSingleParty/03_source/mobile/src/pages/DemoProfileExample/components/Figure.tsx
2025-06-06 14:11:26 +08:00

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>
);