antdesign-ui
Rewrite an extjs project with antd.
Some antd components have been extended, and there are also independent components that do not depend on antd.
✨ Features
VirtualTable :
- column sort
- column resize
- large data performance
📦 Install
npm i antdesign
yarn add antdesign
🔨 Usage
import { VirtualTable } from 'antdesign-ui';
const App = () => (
<>
<VirtualTable
height={200}
dataSource={dataSource}
columns={columns}
/>
</>
);
And import style manually:
import "antdesign-ui/lib/virtual-table/style.css"
Continuously update new components