Projekt

Obecné

Profil

Stáhnout (310 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 9c55d3bb Schwobik
import { Center } from "native-base"
2
3
interface ItemPreviewProps {
4
    caption: string
5
    title: string
6
    name: string
7
    image: string
8
}
9
10
const ItemPreview = (props: ItemPreviewProps) => {
11
12
    return (
13
        <>
14
            <Center>
15
16
            </Center>
17
        </>
18
    )
19
}
20
21
export default ItemPreview