|
@@ -1,15 +1,10 @@
|
1
|
1
|
import {
|
2
|
|
- IonList,
|
3
|
|
- IonItem,
|
4
|
|
- IonLabel,
|
5
|
2
|
IonImg,
|
6
|
|
- IonSearchbar,
|
7
|
3
|
IonContent,
|
8
|
4
|
IonHeader,
|
9
|
5
|
IonPage,
|
10
|
6
|
IonTitle,
|
11
|
7
|
IonToolbar,
|
12
|
|
- IonButton,
|
13
|
8
|
IonNavLink,
|
14
|
9
|
IonFooter,
|
15
|
10
|
IonTabButton,
|
|
@@ -21,8 +16,9 @@ import {
|
21
|
16
|
import { arrowBack } from 'ionicons/icons';
|
22
|
17
|
import './ListCapsules.css';
|
23
|
18
|
import HomePage from './HomePage';
|
24
|
|
-import Capsule from './Capsule'
|
|
19
|
+// import Capsule from './Capsule'
|
25
|
20
|
import EnciclopediaPR from '../assets/EnciclopediaPR.png';
|
|
21
|
+import SearchBar from '../components/SearchBar';
|
26
|
22
|
|
27
|
23
|
const ListCapsules: React.FC = () => {
|
28
|
24
|
return (
|
|
@@ -42,21 +38,7 @@ const ListCapsules: React.FC = () => {
|
42
|
38
|
</IonToolbar>
|
43
|
39
|
</IonHeader>
|
44
|
40
|
<IonContent fullscreen>
|
45
|
|
- <IonSearchbar></IonSearchbar>
|
46
|
|
- <IonList inset={true}>
|
47
|
|
- <IonItem>
|
48
|
|
- <IonLabel>Breve Historia del baile en Puerto Rico</IonLabel>
|
49
|
|
- <IonNavLink routerDirection="forward" component={() => <Capsule />}>
|
50
|
|
- <IonButton>Visitar</IonButton>
|
51
|
|
- </IonNavLink>
|
52
|
|
- </IonItem>
|
53
|
|
- <IonItem>
|
54
|
|
- <IonLabel>Cápsula#2</IonLabel>
|
55
|
|
- </IonItem>
|
56
|
|
- <IonItem>
|
57
|
|
- <IonLabel>Cápsula#3</IonLabel>
|
58
|
|
- </IonItem>
|
59
|
|
- </IonList>
|
|
41
|
+ <SearchBar></SearchBar>
|
60
|
42
|
</IonContent>
|
61
|
43
|
<IonFooter>
|
62
|
44
|
<IonToolbar>
|