@fower/react-native
#
Installation- npm
- Yarn
npm install @fower/react-native
yarn add @fower/react-native
#
Usageimport React from 'react'import { View, Text, Image } from '@fower/react-native'
const ProfileCard = () => ( <View toCenterY p-10 w-260 bgWhite rounded-10 shadow> <Image circle-48 source={{ uri: '/img/jobs.jpg' }} /> <View ml-10> <View textXL fontBold> Steve Jobs </View> <Text gray800>Co-founder of Apple Inc.</Text> </View> </View>)
More documentation is available at use-with-react-native.