0.1.4 • Published 2 years ago

@pnstack/react-native-table v0.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

react-native-table

React native table component

Installation

yarn add @pnstack/react-native-table

Usage

<Table
  columns={[
    {
      title: 'id',
      key: 'id',
      dataIndex: 'id',
    },
    {
      title: 'Name',
      key: 'name',
      dataIndex: 'name',
    },
  ]}
  dataSource={[
    {
      id: 1,
      name: 'name 1',
    },
    {
      id: 2,
      name: 'name 2',
    },
  ]}
/>

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

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago