0.1.33 • Published 4 years ago

protokit-rn v0.1.33

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

Protokit React Native

Protokit RN.

Install as follows:

yarn add protokit-rn@latest

Usage:

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

import { PKButton } from 'protokit-rn';
const App = () => {
  return(
      <View>
        <Text>Button PK</Text>
        <PKButton />
      </View>
  );
};