import React from 'react'; import { Factory } from 'native-base'; import { View } from 'react-native'; export const Example = () => { const FactoryView = Factory(View, { baseStyle: { bg: 'cyan.300', borderRadius: 'md', }, }); return ; };