1.0.0 • Published 5 years ago

react-native-component-library-template-demo v1.0.0

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

react-native-component-library within a project

RN Component library template for publishing to NPM.

Install as follows:

yarn add react-native-component-library-template-demo

Usage:

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

const App = () => {
  return(
      <View>
        <ComponentOne />
        <ComponentTwo />
      </View>
  );
};