inno-jubairk
v0.2.0
Published
react native
Readme
react-native-inno
react native
Installation
npm install react-native-innoUsage
import React, { useState, useEffect } from 'react';
import { Text, View, StyleSheet } from 'react-native';
import { getDummyText } from 'react-native-inno';
export default function App() {
const [message, setMessage] = useState('');
useEffect(() => {
getDummyText('Test').then(setMessage);
}, []);
return (
<View style={styles.container}>
<Text>{message}</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
});Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT
Made with create-react-native-library
