aswi2023one-team-to-rule-them-all-gitlab/src/components/plan/PlanView.tsx @ a6999074
1 | 160b7073 | Fantič | import { VStack, Box, Text, HStack, ScrollView, Flex, Button, CloseIcon, IconButton, TextArea, useToast, Image } from "native-base"; |
---|---|---|---|
2 | import { Note } from "../../types/note"; |
||
3 | import React, { useCallback, useState } from "react"; |
||
4 | |||
5 | |||
6 | |||
7 | |||
8 | const PlanView = (props: { imageUrl: string }) => { |
||
9 | return ( |
||
10 | <Image size={250} alt="image" source={{ uri: props.imageUrl }} /> |
||
11 | );
|
||
12 | }
|
||
13 | |||
14 | export default PlanView |