UNPKG

react-grid-system

Version:

A powerful Bootstrap-like responsive grid system for React.

16 lines (14 loc) 219 B
import React from 'react' import { View } from 'react-native' export default ({ children, style, ...rest }) => ( <View style={[{ flexDirection: 'row' }, style]} {...rest} > {children} </View> )