React native table component
yarn add @pnstack/react-native-table
<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',
},
]}
/>
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library