// @ts-nocheck import React from 'react'; import { Modal, Button, ScrollView, Text, Center, VStack } from 'native-base'; export function Example() { const [modalVisible, setModalVisible] = React.useState(false); const [size, setSize] = React.useState('md'); const handleSizeClick = (newSize) => { setSize(newSize); setModalVisible(!modalVisible); }; return ( <> Return Policy Create a 'Return Request' under “My Orders” section of App/Website. Follow the screens that come up after tapping on the 'Return’ button. Please make a note of the Return ID that we generate at the end of the process. Keep the item ready for pick up or ship it to us basis on the return mode.
{['xs', 'sm', 'md', 'lg', 'xl', 'full'].map((size) => { return ( ); })}
); }