UNPKG

bayst

Version:
22 lines (17 loc) 418 B
import React from 'react' import { View } from 'react-native' import Base from './Base' /**___________________________________________________________________________*/ const Box = ({ ...props }) => { const resultComp = ( <Base componentTag={View} {...props} /> ) return resultComp } /**___________________________________________________________________________*/ export default Box