import { IonContent, IonItem, IonLabel, IonList, IonListHeader, } from "@ionic/react"; import "../components/ListComponent.css"; const ListComponent: React.FC<{ title?: string; laws: string[] }> = (props) => { const title = props.title; const laws = props.laws; return ( {title ? ( {title} ) : null} {laws.map((LawName: string) => { return (

{LawName}

); })} {/*

Ley #1

Ley #1

Ley #1

Ley #1

*/}
); }; export default ListComponent;