Have you ever used Ant Design's Table component and ended up constantly rewriting the same functions?
Antd Smart Table includes:
- Search Function
- Date Range Function
With more coming soon...
Made with create-react-library
npm install --save @offset-dev/antd-smart-table
yarn add @offset-dev/antd-smart-table
import SmartTable from "@offset-dev/antd-smart-table";
import "antd/dist/antd.css";
const dataSource = [
{
key: "1",
name: "Mike",
age: 32,
address: "10 Downing Street",
date: "2020-01-01T10:00:00-00:00"
},
{
key: "2",
name: "John",
age: 42,
address: "10 Downing Street",
date: "2020-01-02T10:00:00-00:00"
},
];
const Page = () => {
return (
<SmartTable dataSource={dataSource} columns={[
{
title: "Name",
dataIndex: "name",
key: "name",
search: "name",
},
{
title: "Age",
dataIndex: "age",
key: "age",
},
{
title: "Address",
dataIndex: "address",
key: "address",
search: "address",
},
{
title: "Date",
dataIndex: "date",
key: "date",
dateRange: "date"
},
]}/>
)
}
MIT © offset-dev