UNPKG

react-native-according-smashup

Version:

This is React native javaScript component which is used to expand the list hide/show the list etc...

13 lines (10 loc) 237 B
import React from 'react'; import {View} from 'react-native'; const Body = React.forwardRef(({children, ...restProps}, ref) => { return ( <View ref={ref} {...restProps}> {children} </View> ); }); export default Body;