import React, { useState } from 'react'; import { Skeleton, Text, Button, Box, Image, VStack, Center, } from 'native-base'; export const Example = () => { const [isLoaded, setIsLoaded] = useState(false); const [text, setText] = useState(''); setTimeout(() => { setIsLoaded(true); setText( 'Lose yourself in the greens of nature, the ones that make you strong. Come visit us at the Greenway Park, and we will be happy to show you around.' ); }, 5000); return (
{text}
); };