import { FC } from 'react'; import styles from './forms.module.scss'; type LabelProps = { htmlFor: string; required?: boolean; }; /** * Label Component * * Render a HTML label element. */ const Label: FC = ({ children, required = false, ...props }) => { return ( ); }; export default Label; ttps://git.armand.philippot.eu/www.armandphilippot.com' title='www.armandphilippot.com Git repository'/>
summaryrefslogtreecommitdiffstats
blob: a12ec06de842c1d6e3f74eaca7d67221830ff11a (plain)
1
2
3
4
5
6
7
import styles from './OrderedList.module.scss';

const OrderedList = ({ items }: { items: Array<any> }) => {
  return <ol className={styles.list}>{items}</ol>;
};

export default OrderedList;