Projekt

Obecné

Profil

Stáhnout (404 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
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
    (1-1/1)