0
2
KKKhalid Khan
React Native component stateless with view children
Library: react-native
Shortcut: reactnative.component.viewchildren
import React from 'react';
import { View } from 'react-native';
const componentName = ({
children, style, ...rest
}) => (
<View style={style}>
{children}
</View>
);
export default componentName;