1.0.22 • Published 5 years ago

template-rn-component-library v1.0.22

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

template-rn-component-library

RN Component library template for publishing to NPM.

Install as follows:

yarn add template-rn-component-library

Usage:

App.js: import {ComponentOne, ComponentTwo} from 'template-rn-component-library';

export default class App extends Component {
  render() {
    return (
      <View style={styles.container}>
        <ComponentOne />
        <ComponentTwo />
      </View>
    );
  }
}