1234567891011121314151617181920212223242526272829303132333435363738 |
- import {
- IonContent,
- IonHeader,
- IonPage,
- IonTitle,
- IonToolbar,
- } from "@ionic/react";
- import ListComponent from "../components/ListComponent";
-
- const AboutListPage: React.FC = () => {
- return (
- <IonPage>
- <IonHeader>
- <IonToolbar>
- <IonTitle>About</IonTitle>
- </IonToolbar>
- </IonHeader>
- <IonContent fullscreen>
- <IonHeader collapse="condense">
- <IonToolbar>
- <IonTitle size="large">About</IonTitle>
- </IonToolbar>
- </IonHeader>
- <ListComponent
- items={[
- "Proyecto Lazos",
- "Casita de Paz",
- "Crecemos",
- "Talleres Educativos",
- "Visitas Supervisadas",
- ]}
- />
- </IonContent>
- </IonPage>
- );
- };
-
- export default AboutListPage;
|