An enterprise-class UI design language and React UI library
yarn add antd
import React from 'react';
import { Button, DatePicker } from 'antd';
const App = () => (
<>
<Button type="primary">PRESS ME</Button>
<DatePicker />
</>
);
$ git clone git@github.com:ant-design/ant-design.git
$ cd ant-design
$ npm install
$ npm start