InfiniteXyy / react-native-library-boilerplate

A brand new React Native library boilerplate, with learn and expo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Your Awesome Library Name

license

Example app

Installation

yarn add awesome-library(for example)

Usage

import { Button } from 'example-library';

const MyButton = () => {
  return (
      <Button
        content="Simple~"
        onPress={() => {
          console.log('you click me');
        }}
      />
  );
};

Running example app (Expo)

git clone https://github.com/InfiniteXyy/react-native-animated-engine
cd react-native-library-boilerplate/packages/example-app
yarn
yarn start

License

MIT

About

A brand new React Native library boilerplate, with learn and expo


Languages

Language:JavaScript 67.3%Language:TypeScript 32.7%