|
@@ -1,3 +1,22 @@
|
|
# ant-design
|
|
# ant-design
|
|
|
|
|
|
-An enterprise-class UI design language and React UI library
|
|
|
|
|
|
+An enterprise-class UI design language and React UI library
|
|
|
|
+
|
|
|
|
+## Usage
|
|
|
|
+```
|
|
|
|
+yarn add antd
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+import React from 'react';
|
|
|
|
+import { Button, DatePicker } from 'antd';
|
|
|
|
+
|
|
|
|
+const App = () => (
|
|
|
|
+ <>
|
|
|
|
+ <Button type="primary">PRESS ME</Button>
|
|
|
|
+ <DatePicker />
|
|
|
|
+ </>
|
|
|
|
+);
|
|
|
|
+```
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|