在尝试实现传统UI组件库的基础上,实现定制化组件,例如:更好的交互、更好的界面效果。
npm install resonance-ui
or
yarn add resonance-ui
import { Button, DatePicker } from 'resonance-ui';
const App = () => (
<>
<Button type="primary">PRESS ME</Button>
<DatePicker placeholder="select date" />
</>
);
import 'resonance-ui/style/index.css';