mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-10 13:26:02 +10:00
205 lines
48 KiB
HTML
205 lines
48 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<meta name="description" content="An enterprise-class UI design language and React-based implementation">
|
||
<meta name="description" content="A set of high-quality React components">
|
||
<meta name="description" content="One of best React UI library for enterprise background">
|
||
<title>Ant Design - A UI Design Language</title>
|
||
<script>
|
||
(function() {
|
||
function isLocalStorageNameSupported() {
|
||
var testKey = 'test';
|
||
var storage = window.localStorage;
|
||
try {
|
||
storage.setItem(testKey, '1');
|
||
storage.removeItem(testKey);
|
||
return true;
|
||
} catch (error) {
|
||
return false;
|
||
}
|
||
}
|
||
// 优先级提高到所有静态资源的前面,语言不对,加载其他静态资源没意义
|
||
var pathname = location.pathname;
|
||
|
||
function isZhCN(pathname) {
|
||
return /-cn\/?$/.test(pathname);
|
||
}
|
||
function getLocalizedPathname(path, zhCN) {
|
||
var pathname = path.startsWith('/') ? path : '/' + path;
|
||
if (!zhCN) { // to enUS
|
||
return /\/?index-cn/.test(pathname) ? '/' : pathname.replace('-cn', '');
|
||
} else if (pathname === '/') {
|
||
return '/index-cn';
|
||
} else if (pathname.endsWith('/')) {
|
||
return pathname.replace(/\/$/, '-cn/');
|
||
}
|
||
return pathname + '-cn';
|
||
}
|
||
|
||
// 兼容旧的 URL, `?locale=...`
|
||
var queryString = location.search;
|
||
if (queryString) {
|
||
var isZhCNConfig = queryString.indexOf('zh-CN') > -1;
|
||
if (isZhCNConfig && !isZhCN(pathname)) {
|
||
location.pathname = getLocalizedPathname(pathname, isZhCNConfig)
|
||
}
|
||
}
|
||
|
||
// 首页无视链接里面的语言设置 https://github.com/ant-design/ant-design/issues/4552
|
||
if (isLocalStorageNameSupported() && (pathname === '/' || pathname === '/index-cn')) {
|
||
var lang = (window.localStorage && localStorage.getItem('locale')) || (navigator.language.toLowerCase() === 'zh-cn' ? 'zh-CN' : 'en-US');
|
||
// safari is 'zh-cn', while other browser is 'zh-CN';
|
||
if ((lang === 'zh-CN') !== isZhCN(pathname)) {
|
||
location.pathname = getLocalizedPathname(pathname, lang === 'zh-CN');
|
||
}
|
||
}
|
||
document.documentElement.className += isZhCN(pathname) ? 'zh-cn' : 'en-us';
|
||
})()
|
||
</script>
|
||
<link rel="icon" href="https://t.alipayobjects.com/images/T1QUBfXo4fXXXXXXXX.png" type="image/x-icon">
|
||
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.cnpmjs.org/css?family=Lato:400,700|Raleway"/>
|
||
<link rel="stylesheet" type="text/css" href="/index-1.css"/>
|
||
<link rel="stylesheet" type="text/css" href="/index-2.css"/>
|
||
<style id="nprogress-style">
|
||
#nprogress { display: none }
|
||
</style>
|
||
<!--[if lte IE 10]>
|
||
<script
|
||
src="https://as.alipayobjects.com/g/component/??console-polyfill/0.2.2/index.js,media-match/2.0.2/media.match.min.js"></script>
|
||
<![endif]-->
|
||
<script>
|
||
if (!window.Intl) {
|
||
document.writeln('<script src="https://as.alipayobjects.com/g/component/intl/1.0.1/??Intl.js,locale-data/jsonp/en.js,locale-data/jsonp/zh.js">' + '<' + '/script>');
|
||
}
|
||
if (!window.Promise) {
|
||
document.writeln('<script src="https://as.alipayobjects.com/g/component/es6-promise/3.2.2/es6-promise.min.js"' + '>' + '<' + '/' + 'script>');
|
||
}
|
||
// Enable Google Analytics
|
||
if (!location.port) {
|
||
/* eslint-disable */
|
||
(function (i, s, o, g, r, a, m) {
|
||
i['GoogleAnalyticsObject'] = r;
|
||
i[r] = i[r] || function () {
|
||
(i[r].q = i[r].q || []).push(arguments)
|
||
}, i[r].l = 1 * new Date();
|
||
a = s.createElement(o),
|
||
m = s.getElementsByTagName(o)[0];
|
||
a.async = 1;
|
||
a.src = g;
|
||
m.parentNode.insertBefore(a, m)
|
||
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
|
||
ga('create', 'UA-72788897-1', 'auto');
|
||
ga('send', 'pageview');
|
||
/* eslint-enable */
|
||
}
|
||
</script>
|
||
<!-- Hotjar Tracking Code for ant.design -->
|
||
<script>
|
||
(function(h,o,t,j,a,r){
|
||
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
|
||
h._hjSettings={hjid:473408,hjsv:5};
|
||
a=o.getElementsByTagName('head')[0];
|
||
r=o.createElement('script');r.async=1;
|
||
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
|
||
a.appendChild(r);
|
||
})(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
|
||
</script>
|
||
</head>
|
||
<body>
|
||
<div id="react-content">
|
||
<div class="page-wrapper" data-reactroot="" data-reactid="1" data-react-checksum="-1649427259"><header id="header" class="clearfix" data-reactid="2"><div class="ant-row" data-reactid="3"><div class="ant-col-xs-24 ant-col-sm-24 ant-col-md-5 ant-col-lg-4" data-reactid="4"><a id="logo" href="/" data-reactid="5"><img alt="logo" src="https://t.alipayobjects.com/images/rmsweb/T1B9hfXcdvXXXXXXXX.svg" data-reactid="6"/><span data-reactid="7">Ant Design</span></a></div><div class="ant-col-xs-0 ant-col-sm-0 ant-col-md-19 ant-col-lg-20" data-reactid="8"><div id="search-box" data-reactid="9"><div class="ant-select ant-select-combobox ant-select-enabled" data-reactid="10"><div class="ant-select-selection
|
||
ant-select-selection--single" role="combobox" aria-autocomplete="list" aria-haspopup="true" aria-expanded="false" data-reactid="11"><div class="ant-select-selection__rendered" data-reactid="12"><div style="display:block;user-select:none;-webkit-user-select:none;" unselectable="unselectable" class="ant-select-selection__placeholder" data-reactid="13">Search Components...</div><ul data-reactid="14"><li class="ant-select-search ant-select-search--inline" data-reactid="15"><div class="ant-select-search__field__wrap" data-reactid="16"><input value="" class="ant-select-search__field" data-reactid="17"/><span class="ant-select-search__field__mirror" data-reactid="18"><!-- react-text: 19 --><!-- /react-text --><!-- react-text: 20 --> <!-- /react-text --></span></div></li></ul></div><span class="ant-select-arrow" style="user-select:none;-webkit-user-select:none;" unselectable="unselectable" data-reactid="21"><b data-reactid="22"></b></span></div></div></div><button type="button" class="ant-btn ant-btn-ghost ant-btn-sm lang" data-reactid="23"><span data-reactid="24">中文</span></button><div class="ant-select-sm version ant-select ant-select-enabled" data-reactid="25"><div class="ant-select-selection
|
||
ant-select-selection--single" role="combobox" aria-autocomplete="list" aria-haspopup="true" aria-expanded="false" tabindex="0" data-reactid="26"><div class="ant-select-selection__rendered" data-reactid="27"><div class="ant-select-selection-selected-value" title="2.9.3" style="display:block;opacity:1;" data-reactid="28">2.9.3</div></div><span class="ant-select-arrow" style="user-select:none;-webkit-user-select:none;" unselectable="unselectable" data-reactid="29"><b data-reactid="30"></b></span></div></div><ul class="ant-menu ant-menu-horizontal ant-menu-light ant-menu-root" role="menu" aria-activedescendant="" id="nav" tabindex="0" data-reactid="31"><li class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="32"><a href="/" data-reactid="33"><span data-reactid="34">Home</span></a></li><li class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="35"><a href="/docs/spec/introduce" data-reactid="36"><span data-reactid="37">Guidlines</span></a></li><li class="ant-menu-item-selected ant-menu-item" role="menuitem" aria-selected="true" data-reactid="38"><a href="/docs/react/introduce" data-reactid="39"><span data-reactid="40">Components</span></a></li><li class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="41"><a href="/docs/pattern/navigation" data-reactid="42"><span data-reactid="43">Patterns</span></a></li><li class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="44"><a href="/docs/resource/download" data-reactid="45"><span data-reactid="46">Resources</span></a></li></ul></div></div></header><div class="main-wrapper" data-reactid="47"><div class="ant-row" data-reactid="48"><div class="ant-col-xs-24 ant-col-sm-24 ant-col-md-6 ant-col-lg-4" data-reactid="49"><ul class="ant-menu ant-menu-inline aside-container ant-menu-light ant-menu-root" role="menu" aria-activedescendant="" tabindex="0" data-reactid="50"><li style="padding-left:24px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="51"><a href="/docs/react/introduce" data-reactid="52">Ant Design of React</a></li><li style="padding-left:24px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="53"><a href="/docs/react/getting-started" data-reactid="54">Getting Started</a></li><li style="padding-left:24px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="55"><a href="/docs/react/practical-projects" data-reactid="56">Real project with dva</a></li><li style="padding-left:24px;" class="ant-menu-item-selected ant-menu-item" role="menuitem" aria-selected="true" data-reactid="57"><a href="/docs/react/use-with-create-react-app" data-reactid="58">Use in create-react-app</a></li><li style="padding-left:24px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="59"><a href="/docs/react/customize-theme" data-reactid="60">Customize Theme</a></li><li style="padding-left:24px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="61"><a href="/changelog" data-reactid="62">Change Log</a></li><li style="padding-left:24px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="63"><a href="/docs/react/recommendation" data-reactid="64">Third-Party Libraries</a></li><li style="padding-left:24px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="65"><a href="/docs/react/i18n" data-reactid="66">Internationalization</a></li><li class="ant-menu-submenu-inline ant-menu-submenu-open ant-menu-submenu" data-reactid="67"><div style="padding-left:24px;" class="ant-menu-submenu-title" aria-expanded="true" aria-owns="Components$Menu" aria-haspopup="true" data-reactid="68"><h4 data-reactid="69">Components</h4></div><ul class="ant-menu ant-menu-inline ant-menu-sub" role="menu" aria-activedescendant="" id="Components$Menu" data-reactid="70"><li class=" ant-menu-item-group" data-reactid="71"><div class="ant-menu-item-group-title" data-reactid="72">General</div><ul class="ant-menu-item-group-list" data-reactid="73"><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="74"><a href="/components/button/" data-reactid="75"><span data-reactid="76">Button</span><span class="chinese" data-reactid="77"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="78"><a href="/components/icon/" data-reactid="79"><span data-reactid="80">Icon</span><span class="chinese" data-reactid="81"></span></a></li></ul></li><li class=" ant-menu-item-group" data-reactid="82"><div class="ant-menu-item-group-title" data-reactid="83">Layout</div><ul class="ant-menu-item-group-list" data-reactid="84"><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="85"><a href="/components/grid/" data-reactid="86"><span data-reactid="87">Grid</span><span class="chinese" data-reactid="88"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="89"><a href="/components/layout/" data-reactid="90"><span data-reactid="91">Layout</span><span class="chinese" data-reactid="92"></span></a></li></ul></li><li class=" ant-menu-item-group" data-reactid="93"><div class="ant-menu-item-group-title" data-reactid="94">Navigation</div><ul class="ant-menu-item-group-list" data-reactid="95"><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="96"><a href="/components/affix/" data-reactid="97"><span data-reactid="98">Affix</span><span class="chinese" data-reactid="99"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="100"><a href="/components/breadcrumb/" data-reactid="101"><span data-reactid="102">Breadcrumb</span><span class="chinese" data-reactid="103"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="104"><a href="/components/back-top/" data-reactid="105"><span data-reactid="106">BackTop</span><span class="chinese" data-reactid="107"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="108"><a href="/components/dropdown/" data-reactid="109"><span data-reactid="110">Dropdown</span><span class="chinese" data-reactid="111"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="112"><a href="/components/menu/" data-reactid="113"><span data-reactid="114">Menu</span><span class="chinese" data-reactid="115"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="116"><a href="/components/pagination/" data-reactid="117"><span data-reactid="118">Pagination</span><span class="chinese" data-reactid="119"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="120"><a href="/components/steps/" data-reactid="121"><span data-reactid="122">Steps</span><span class="chinese" data-reactid="123"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="124"><a href="/components/tabs/" data-reactid="125"><span data-reactid="126">Tabs</span><span class="chinese" data-reactid="127"></span></a></li></ul></li><li class=" ant-menu-item-group" data-reactid="128"><div class="ant-menu-item-group-title" data-reactid="129">Data Entry</div><ul class="ant-menu-item-group-list" data-reactid="130"><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="131"><a href="/components/auto-complete/" data-reactid="132"><span data-reactid="133">AutoComplete</span><span class="chinese" data-reactid="134"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="135"><a href="/components/cascader/" data-reactid="136"><span data-reactid="137">Cascader</span><span class="chinese" data-reactid="138"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="139"><a href="/components/checkbox/" data-reactid="140"><span data-reactid="141">Checkbox</span><span class="chinese" data-reactid="142"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="143"><a href="/components/date-picker/" data-reactid="144"><span data-reactid="145">DatePicker</span><span class="chinese" data-reactid="146"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="147"><a href="/components/form/" data-reactid="148"><span data-reactid="149">Form</span><span class="chinese" data-reactid="150"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="151"><a href="/components/input-number/" data-reactid="152"><span data-reactid="153">InputNumber</span><span class="chinese" data-reactid="154"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="155"><a href="/components/input/" data-reactid="156"><span data-reactid="157">Input</span><span class="chinese" data-reactid="158"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="159"><a href="/components/mention/" data-reactid="160"><span data-reactid="161">Mention</span><span class="chinese" data-reactid="162"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="163"><a href="/components/rate/" data-reactid="164"><span data-reactid="165">Rate</span><span class="chinese" data-reactid="166"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="167"><a href="/components/radio/" data-reactid="168"><span data-reactid="169">Radio</span><span class="chinese" data-reactid="170"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="171"><a href="/components/select/" data-reactid="172"><span data-reactid="173">Select</span><span class="chinese" data-reactid="174"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="175"><a href="/components/slider/" data-reactid="176"><span data-reactid="177">Slider</span><span class="chinese" data-reactid="178"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="179"><a href="/components/switch/" data-reactid="180"><span data-reactid="181">Switch</span><span class="chinese" data-reactid="182"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="183"><a href="/components/tree-select/" data-reactid="184"><span data-reactid="185">TreeSelect</span><span class="chinese" data-reactid="186"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="187"><a href="/components/time-picker/" data-reactid="188"><span data-reactid="189">TimePicker</span><span class="chinese" data-reactid="190"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="191"><a href="/components/transfer/" data-reactid="192"><span data-reactid="193">Transfer</span><span class="chinese" data-reactid="194"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="195"><a href="/components/upload/" data-reactid="196"><span data-reactid="197">Upload</span><span class="chinese" data-reactid="198"></span></a></li></ul></li><li class=" ant-menu-item-group" data-reactid="199"><div class="ant-menu-item-group-title" data-reactid="200">Data Display</div><ul class="ant-menu-item-group-list" data-reactid="201"><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="202"><a href="/components/badge/" data-reactid="203"><span data-reactid="204">Badge</span><span class="chinese" data-reactid="205"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="206"><a href="/components/calendar/" data-reactid="207"><span data-reactid="208">Calendar</span><span class="chinese" data-reactid="209"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="210"><a href="/components/card/" data-reactid="211"><span data-reactid="212">Card</span><span class="chinese" data-reactid="213"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="214"><a href="/components/carousel/" data-reactid="215"><span data-reactid="216">Carousel</span><span class="chinese" data-reactid="217"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="218"><a href="/components/collapse/" data-reactid="219"><span data-reactid="220">Collapse</span><span class="chinese" data-reactid="221"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="222"><a href="/components/popover/" data-reactid="223"><span data-reactid="224">Popover</span><span class="chinese" data-reactid="225"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="226"><a href="/components/tooltip/" data-reactid="227"><span data-reactid="228">Tooltip</span><span class="chinese" data-reactid="229"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="230"><a href="/components/table/" data-reactid="231"><span data-reactid="232">Table</span><span class="chinese" data-reactid="233"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="234"><a href="/components/tag/" data-reactid="235"><span data-reactid="236">Tag</span><span class="chinese" data-reactid="237"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="238"><a href="/components/timeline/" data-reactid="239"><span data-reactid="240">Timeline</span><span class="chinese" data-reactid="241"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="242"><a href="/components/tree/" data-reactid="243"><span data-reactid="244">Tree</span><span class="chinese" data-reactid="245"></span></a></li></ul></li><li class=" ant-menu-item-group" data-reactid="246"><div class="ant-menu-item-group-title" data-reactid="247">Feedback</div><ul class="ant-menu-item-group-list" data-reactid="248"><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="249"><a href="/components/alert/" data-reactid="250"><span data-reactid="251">Alert</span><span class="chinese" data-reactid="252"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="253"><a href="/components/modal/" data-reactid="254"><span data-reactid="255">Modal</span><span class="chinese" data-reactid="256"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="257"><a href="/components/message/" data-reactid="258"><span data-reactid="259">Message</span><span class="chinese" data-reactid="260"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="261"><a href="/components/notification/" data-reactid="262"><span data-reactid="263">Notification</span><span class="chinese" data-reactid="264"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="265"><a href="/components/progress/" data-reactid="266"><span data-reactid="267">Progress</span><span class="chinese" data-reactid="268"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="269"><a href="/components/popconfirm/" data-reactid="270"><span data-reactid="271">Popconfirm</span><span class="chinese" data-reactid="272"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="273"><a href="/components/spin/" data-reactid="274"><span data-reactid="275">Spin</span><span class="chinese" data-reactid="276"></span></a></li></ul></li><li class=" ant-menu-item-group" data-reactid="277"><div class="ant-menu-item-group-title" data-reactid="278">Other</div><ul class="ant-menu-item-group-list" data-reactid="279"><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="280"><a href="/components/anchor/" data-reactid="281"><span data-reactid="282">Anchor</span><span class="chinese" data-reactid="283"></span></a></li><li style="padding-left:48px;" class="ant-menu-item" role="menuitem" aria-selected="false" data-reactid="284"><a href="/components/locale-provider/" data-reactid="285"><span data-reactid="286">LocaleProvider</span><span class="chinese" data-reactid="287"></span></a></li></ul></li></ul></li></ul></div><div class="main-container ant-col-xs-24 ant-col-sm-24 ant-col-md-18 ant-col-lg-20" data-reactid="288"><article class="markdown" data-reactid="289"><h1 data-reactid="290"><!-- react-text: 291 -->Use in create-react-app<!-- /react-text --><a class="edit-button" href="https://github.com/ant-design/ant-design/edit/master/docs/react/use-with-create-react-app.en-US.md" data-reactid="292"><i class="anticon anticon-edit" data-reactid="293"></i></a></h1><section class="markdown" data-reactid="294"><p data-reactid="295"><a href="https://github.com/facebookincubator/create-react-app" data-reactid="296"><!-- react-text: 297 -->create-react-app<!-- /react-text --></a><!-- react-text: 298 --> is one of best React application development tool, we are going to use <!-- /react-text --><code data-reactid="299"><!-- react-text: 300 -->antd<!-- /react-text --></code><!-- react-text: 301 --> within it and modify the webpack config for some customized needs.<!-- /react-text --></p></section><section class="toc" data-reactid="302"><ul data-reactid="303"><li data-reactid="304"><a class="bisheng-toc-h2" href="#Install-and-Initialization" title="Install and Initialization" data-reactid="305"><!-- react-text: 306 -->Install and Initialization<!-- /react-text --></a></li><li data-reactid="307"><a class="bisheng-toc-h2" href="#Import-antd" title="Import antd" data-reactid="308"><!-- react-text: 309 -->Import antd<!-- /react-text --></a></li><li data-reactid="310"><a class="bisheng-toc-h2" href="#Advanced-Guides" title="Advanced Guides" data-reactid="311"><!-- react-text: 312 -->Advanced Guides<!-- /react-text --></a></li><li data-reactid="313"><a class="bisheng-toc-h2" href="#Source-code-and-other-boilerplates" title="Source code and other boilerplates" data-reactid="314"><!-- react-text: 315 -->Source code and other boilerplates<!-- /react-text --></a></li></ul></section><section class="markdown" data-reactid="316"><h2 id="Install-and-Initialization" data-reactid="317"><span data-reactid="318"><!-- react-text: 319 -->Install and Initialization<!-- /react-text --></span><a href="#Install-and-Initialization" class="anchor" data-reactid="320">#</a></h2><p data-reactid="321"><!-- react-text: 322 -->We need to install <!-- /react-text --><code data-reactid="323"><!-- react-text: 324 -->create-react-app<!-- /react-text --></code><!-- react-text: 325 --> first, you may need install <!-- /react-text --><a href="https://github.com/yarnpkg/yarn/" data-reactid="326"><!-- react-text: 327 -->yarn<!-- /react-text --></a><!-- react-text: 328 --> too.<!-- /react-text --></p><pre class="language-bash" data-reactid="329"><code data-reactid="330">$ <span class="token function">npm</span> <span class="token function">install</span> -g create-react-app yarn</code></pre><p data-reactid="331"><!-- react-text: 332 -->Create a new project named <!-- /react-text --><code data-reactid="333"><!-- react-text: 334 -->antd-demo<!-- /react-text --></code><!-- react-text: 335 -->.<!-- /react-text --></p><pre class="language-bash" data-reactid="336"><code data-reactid="337">$ create-react-app antd-demo</code></pre><p data-reactid="338"><!-- react-text: 339 -->The tool will create and initialize environment and dependencies automaticly,
|
||
please try config your proxy setting or use other npm registry if any network errors happen during it.<!-- /react-text --></p><p data-reactid="340"><!-- react-text: 341 -->Then we go inside <!-- /react-text --><code data-reactid="342"><!-- react-text: 343 -->antd-demo<!-- /react-text --></code><!-- react-text: 344 --> and start it.<!-- /react-text --></p><pre class="language-bash" data-reactid="345"><code data-reactid="346">$ <span class="token function">cd</span> antd-demo
|
||
$ yarn start</code></pre><p data-reactid="347"><!-- react-text: 348 -->Open browser at <!-- /react-text --><a href="http://localhost:3000/" data-reactid="349"><!-- react-text: 350 -->http://localhost:3000/<!-- /react-text --></a><!-- react-text: 351 -->, it renders a header saying "Welcome to React" on the page.<!-- /react-text --></p><h2 id="Import-antd" data-reactid="352"><span data-reactid="353"><!-- react-text: 354 -->Import antd<!-- /react-text --></span><a href="#Import-antd" class="anchor" data-reactid="355">#</a></h2><p data-reactid="356"><!-- react-text: 357 -->It is the default directory structure below.<!-- /react-text --></p><pre class="language-null" data-reactid="358"><code data-reactid="359">├── README<span class="token punctuation">.</span>md
|
||
├── package<span class="token punctuation">.</span>json
|
||
├── public
|
||
│ ├── favicon<span class="token punctuation">.</span>ico
|
||
│ └── index<span class="token punctuation">.</span>html
|
||
├── src
|
||
│ ├── App<span class="token punctuation">.</span>css
|
||
│ ├── App<span class="token punctuation">.</span>js
|
||
│ ├── App<span class="token punctuation">.</span>test<span class="token punctuation">.</span>js
|
||
│ ├── index<span class="token punctuation">.</span>css
|
||
│ ├── index<span class="token punctuation">.</span>js
|
||
│ └── logo<span class="token punctuation">.</span>svg
|
||
└── yarn<span class="token punctuation">.</span>lock</code></pre><p data-reactid="360"><!-- react-text: 361 -->Now we install <!-- /react-text --><code data-reactid="362"><!-- react-text: 363 -->antd<!-- /react-text --></code><!-- react-text: 364 --> from yarn or npm.<!-- /react-text --></p><pre class="language-bash" data-reactid="365"><code data-reactid="366">$ yarn add antd --save</code></pre><p data-reactid="367"><!-- react-text: 368 -->Modify <!-- /react-text --><code data-reactid="369"><!-- react-text: 370 -->src/App.js<!-- /react-text --></code><!-- react-text: 371 -->, import Button component from <!-- /react-text --><code data-reactid="372"><!-- react-text: 373 -->antd<!-- /react-text --></code><!-- react-text: 374 -->.<!-- /react-text --></p><pre class="language-jsx" data-reactid="375"><code data-reactid="376"><span class="token keyword">import</span> React<span class="token punctuation">,</span> <span class="token punctuation">{</span> Component <span class="token punctuation">}</span> <span class="token keyword">from</span> <span class="token string">'react'</span><span class="token punctuation">;</span>
|
||
<span class="token keyword">import</span> <span class="token punctuation">{</span> Button <span class="token punctuation">}</span> <span class="token keyword">from</span> <span class="token string">'antd'</span><span class="token punctuation">;</span>
|
||
<span class="token keyword">import</span> <span class="token string">'./App.css'</span><span class="token punctuation">;</span>
|
||
|
||
<span class="token keyword">class</span> <span class="token class-name">App</span> <span class="token keyword">extends</span> <span class="token class-name">Component</span> <span class="token punctuation">{</span>
|
||
<span class="token function">render</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token punctuation">{</span>
|
||
<span class="token keyword">return</span> <span class="token punctuation">(</span>
|
||
<span class="token tag"><span class="token tag"><span class="token punctuation"><</span>div</span> <span class="token attr-name">className</span><span class="token attr-value"><span class="token punctuation">=</span><span class="token punctuation">"</span>App<span class="token punctuation">"</span></span><span class="token punctuation">></span></span>
|
||
<span class="token tag"><span class="token tag"><span class="token punctuation"><</span>Button</span> <span class="token attr-name">type</span><span class="token attr-value"><span class="token punctuation">=</span><span class="token punctuation">"</span>primary<span class="token punctuation">"</span></span><span class="token punctuation">></span></span>Button<span class="token tag"><span class="token tag"><span class="token punctuation"></</span>Button</span><span class="token punctuation">></span></span>
|
||
<span class="token tag"><span class="token tag"><span class="token punctuation"></</span>div</span><span class="token punctuation">></span></span>
|
||
<span class="token punctuation">)</span><span class="token punctuation">;</span>
|
||
<span class="token punctuation">}</span>
|
||
<span class="token punctuation">}</span>
|
||
|
||
<span class="token keyword">export</span> <span class="token keyword">default</span> App<span class="token punctuation">;</span></code></pre><p data-reactid="377"><!-- react-text: 378 -->Add <!-- /react-text --><code data-reactid="379"><!-- react-text: 380 -->antd/dist/antd.css<!-- /react-text --></code><!-- react-text: 381 --> at the top of <!-- /react-text --><code data-reactid="382"><!-- react-text: 383 -->src/App.css<!-- /react-text --></code><!-- react-text: 384 -->.<!-- /react-text --></p><pre class="language-css" data-reactid="385"><code data-reactid="386"><span class="token atrule"><span class="token rule">@import</span> <span class="token string">'~antd/dist/antd.css'</span><span class="token punctuation">;</span></span>
|
||
|
||
<span class="token selector"><span class="token class">.App</span> </span><span class="token punctuation">{</span>
|
||
<span class="token property">text-align</span><span class="token punctuation">:</span> center<span class="token punctuation">;</span>
|
||
<span class="token punctuation">}</span>
|
||
|
||
<span class="token number">...</span></code></pre><p data-reactid="387"><!-- react-text: 388 -->Ok, you now see a blue primary button displaying in page now, next you can choose any components of <!-- /react-text --><code data-reactid="389"><!-- react-text: 390 -->antd<!-- /react-text --></code><!-- react-text: 391 --> to develop your application. Visit other workflow of <!-- /react-text --><code data-reactid="392"><!-- react-text: 393 -->create-react-app<!-- /react-text --></code><!-- react-text: 394 --> at its <!-- /react-text --><a href="https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md" data-reactid="395"><!-- react-text: 396 -->User Guide <!-- /react-text --></a><!-- react-text: 397 -->.<!-- /react-text --></p><h2 id="Advanced-Guides" data-reactid="398"><span data-reactid="399"><!-- react-text: 400 -->Advanced Guides<!-- /react-text --></span><a href="#Advanced-Guides" class="anchor" data-reactid="401">#</a></h2><p data-reactid="402"><!-- react-text: 403 -->We are successfully running antd components now; but in the real world, there are still lots of problems about antd-demo.
|
||
For instance, we actually import all components in the project which will cause a serious network perfermance issue.<!-- /react-text --></p><blockquote data-reactid="404"><p data-reactid="405"><!-- react-text: 406 -->You will see a warning in your browser console.
|
||
<!-- /react-text --><img src="https://zos.alipayobjects.com/rmsportal/vgcHJRVZFmPjAawwVoXK.png" data-reactid="407"/></p></blockquote><p data-reactid="408"><!-- react-text: 409 -->So it is necessary to customize the default webpack config. We can achieve that by using <!-- /react-text --><code data-reactid="410"><!-- react-text: 411 -->eject<!-- /react-text --></code><!-- react-text: 412 --> script command.<!-- /react-text --></p><pre class="language-bash" data-reactid="413"><code data-reactid="414">$ yarn run <span class="token function">eject</span></code></pre><h3 id="Import-on-demand" data-reactid="415"><span data-reactid="416"><!-- react-text: 417 -->Import on demand<!-- /react-text --></span><a href="#Import-on-demand" class="anchor" data-reactid="418">#</a></h3><p data-reactid="419"><a href="https://github.com/ant-design/babel-plugin-import" data-reactid="420"><!-- react-text: 421 -->babel-plugin-import<!-- /react-text --></a><!-- react-text: 422 --> is a babel plugin for importing components on demand (<!-- /react-text --><a href="/docs/react/getting-started#Import-on-Demand" data-reactid="423">principle</a><!-- react-text: 424 -->). After eject all config files to antd-demo, we allowed to install it and modify <!-- /react-text --><code data-reactid="425"><!-- react-text: 426 -->config/webpack.config.dev.js<!-- /react-text --></code><!-- react-text: 427 --> now.<!-- /react-text --></p><pre class="language-bash" data-reactid="428"><code data-reactid="429">$ yarn add babel-plugin-import --save-dev</code></pre><pre class="language-diff" data-reactid="430"><code data-reactid="431">// Process JS with Babel.
|
||
{
|
||
test: /\.(js|jsx)$/,
|
||
include: paths.appSrc,
|
||
loader: 'babel',
|
||
query: {
|
||
<span class="token inserted">+ plugins: [</span>
|
||
<span class="token inserted">+ ['import', [{ libraryName: "antd", style: 'css' }]],</span>
|
||
<span class="token inserted">+ ],</span>
|
||
// This is a feature of `babel-loader` for webpack (not Babel itself).
|
||
// It enables caching results in ./node_modules/.cache/babel-loader/
|
||
// directory for faster rebuilds.
|
||
cacheDirectory: true
|
||
}
|
||
},</code></pre><blockquote data-reactid="432"><p data-reactid="433"><!-- react-text: 434 -->Note: because there is no <!-- /react-text --><code data-reactid="435"><!-- react-text: 436 -->.babelrc<!-- /react-text --></code><!-- react-text: 437 --> file after config eject, so we have to put the babel option into <!-- /react-text --><code data-reactid="438"><!-- react-text: 439 -->webpack.config.js<!-- /react-text --></code><!-- react-text: 440 --> or <!-- /react-text --><code data-reactid="441"><!-- react-text: 442 -->babel<!-- /react-text --></code><!-- react-text: 443 --> field of <!-- /react-text --><code data-reactid="444"><!-- react-text: 445 -->package.json<!-- /react-text --></code><!-- react-text: 446 -->.<!-- /react-text --></p></blockquote><p data-reactid="447"><!-- react-text: 448 -->Remove the <!-- /react-text --><code data-reactid="449"><!-- react-text: 450 -->@import '~antd/dist/antd.css';<!-- /react-text --></code><!-- react-text: 451 --> statement added before because <!-- /react-text --><code data-reactid="452"><!-- react-text: 453 -->babel-plugin-import<!-- /react-text --></code><!-- react-text: 454 --> will import styles.<!-- /react-text --></p><p data-reactid="455"><!-- react-text: 456 -->Then reboot <!-- /react-text --><code data-reactid="457"><!-- react-text: 458 -->yarn start<!-- /react-text --></code><!-- react-text: 459 --> and visit demo page, you should find that the above warning message would be gone which prove the <!-- /react-text --><code data-reactid="460"><!-- react-text: 461 -->import on demand<!-- /react-text --></code><!-- react-text: 462 --> config is effective now.<!-- /react-text --></p><h3 id="Customize-Theme" data-reactid="463"><span data-reactid="464"><!-- react-text: 465 -->Customize Theme<!-- /react-text --></span><a href="#Customize-Theme" class="anchor" data-reactid="466">#</a></h3><p data-reactid="467"><!-- react-text: 468 -->According to <!-- /react-text --><a href="/docs/react/customize-theme" data-reactid="469">Customize Theme documentation</a><!-- react-text: 470 -->, we need <!-- /react-text --><code data-reactid="471"><!-- react-text: 472 -->less<!-- /react-text --></code><!-- react-text: 473 --> variables modify ability of <!-- /react-text --><a href="https://github.com/webpack/less-loader" data-reactid="474"><!-- react-text: 475 -->less-loader<!-- /react-text --></a><!-- react-text: 476 -->, so we add it.<!-- /react-text --></p><pre class="language-bash" data-reactid="477"><code data-reactid="478">$ yarn add <span class="token function">less</span> less-loader --save-dev</code></pre><pre class="language-diff" data-reactid="479"><code data-reactid="480">loaders: [
|
||
{
|
||
exclude: [
|
||
/\.html$/,
|
||
/\.(js|jsx)$/,
|
||
<span class="token inserted">+ /\.less$/,</span>
|
||
/\.css$/,
|
||
/\.json$/,
|
||
/\.svg$/
|
||
],
|
||
loader: 'url',
|
||
},
|
||
|
||
...
|
||
|
||
// Process JS with Babel.
|
||
{
|
||
test: /\.(js|jsx)$/,
|
||
include: paths.appSrc,
|
||
loader: 'babel',
|
||
query: {
|
||
plugins: [
|
||
<span class="token deleted">- ['import', [{ libraryName: "antd", style: 'css' }]],</span>
|
||
<span class="token inserted">+ ['import', [{ libraryName: "antd", style: true }]], // import less</span>
|
||
],
|
||
},
|
||
|
||
...
|
||
|
||
<span class="token inserted">+ // Parse less files and modify variables</span>
|
||
<span class="token inserted">+ {</span>
|
||
<span class="token inserted">+ test: /\.less$/,</span>
|
||
<span class="token inserted">+ loader: 'style!css!postcss!less?{modifyVars:{"@primary-color":"#1DA57A"}}'</span>
|
||
<span class="token inserted">+ },</span>
|
||
]</code></pre><p data-reactid="481"><!-- react-text: 482 -->We use <!-- /react-text --><code data-reactid="483"><!-- react-text: 484 -->modifyVars<!-- /react-text --></code><!-- react-text: 485 --> option of <!-- /react-text --><a href="https://github.com/webpack/less-loader#less-options" data-reactid="486"><!-- react-text: 487 -->less-loader<!-- /react-text --></a><!-- react-text: 488 --> here, you can see a green button rendered on the page after reboot start server.<!-- /react-text --></p><blockquote data-reactid="489"><p data-reactid="490"><!-- react-text: 491 -->Note, we only modified <!-- /react-text --><code data-reactid="492"><!-- react-text: 493 -->webpack.config.dev.js<!-- /react-text --></code><!-- react-text: 494 --> now, if you wish this config working on production environment, you need to update <!-- /react-text --><code data-reactid="495"><!-- react-text: 496 -->webpack.config.prod.js<!-- /react-text --></code><!-- react-text: 497 --> as well.<!-- /react-text --></p></blockquote><h2 id="Source-code-and-other-boilerplates" data-reactid="498"><span data-reactid="499"><!-- react-text: 500 -->Source code and other boilerplates<!-- /react-text --></span><a href="#Source-code-and-other-boilerplates" class="anchor" data-reactid="501">#</a></h2><p data-reactid="502"><!-- react-text: 503 -->Finally, we use antd with create-react-app successfully, you can learn these practice for your own webpack workflow too, and find more webpack config in the <!-- /react-text --><a href="https://github.com/ant-tool/atool-build/blob/master/src/getWebpackCommonConfig.js" data-reactid="504"><!-- react-text: 505 -->atool-build<!-- /react-text --></a><!-- react-text: 506 -->. (For instance, add <!-- /react-text --><a href="https://github.com/ant-tool/atool-build/blob/e4bd2959689b6a95cb5c1c854a5db8c98676bdb3/src/getWebpackCommonConfig.js#L90" data-reactid="507"><!-- react-text: 508 -->moment noParse<!-- /react-text --></a><!-- react-text: 509 --> to avoid loading all language files)<!-- /react-text --></p><p data-reactid="510"><!-- react-text: 511 -->There are a lot of great boilerplates like create-react-app in React community. There are some source code samples of importing antd in them if you encounter some problems.<!-- /react-text --></p><ul data-reactid="512"><li data-reactid="513"><p data-reactid="514"><a href="https://github.com/ant-design/create-react-app-antd" data-reactid="515"><!-- react-text: 516 -->create-react-app-antd<!-- /react-text --></a></p></li><li data-reactid="517"><p data-reactid="518"><a href="https://github.com/ant-design/react-boilerplate" data-reactid="519"><!-- react-text: 520 -->react-boilerplate/react-boilerplate<!-- /react-text --></a></p></li><li data-reactid="521"><p data-reactid="522"><a href="https://github.com/ant-design/react-starter-kit" data-reactid="523"><!-- react-text: 524 -->kriasoft/react-starter-kit<!-- /react-text --></a></p></li></ul></section></article></div></div><div class="ant-row" data-reactid="525"><div class="ant-col-xs-24 ant-col-sm-24 ant-col-md-18 ant-col-md-offset-6 ant-col-lg-20 ant-col-lg-offset-4" data-reactid="526"><section class="prev-next-nav" data-reactid="527"><a class="prev-page" href="/docs/react/practical-projects" data-reactid="528">Real project with dva</a><a class="next-page" href="/docs/react/customize-theme" data-reactid="529">Customize Theme</a></section></div></div></div><footer id="footer" data-reactid="530"><ul data-reactid="531"><li data-reactid="532"><h2 data-reactid="533"><i class="anticon anticon-github" data-reactid="534"></i><!-- react-text: 535 --> GitHub<!-- /react-text --></h2><div data-reactid="536"><a target="_blank " href="https://github.com/ant-design/ant-design" data-reactid="537"><span data-reactid="538">Repository</span></a></div><div data-reactid="539"><a target="_blank " href="https://ant.design/docs/react/customize-theme" data-reactid="540"><span data-reactid="541">Customize Theme</span></a></div><div data-reactid="542"><a target="_blank " href="https://github.com/websemantics/awesome-ant-design" data-reactid="543"><span data-reactid="544">Awesome Ant Design</span></a></div></li><li data-reactid="545"><h2 data-reactid="546"><i class="anticon anticon-link" data-reactid="547"></i><!-- react-text: 548 --> <!-- /react-text --><span data-reactid="549">Links</span></h2><div data-reactid="550"><a href="https://design.alipay.com/" data-reactid="551"><span data-reactid="552">Ant Financial Design Platform</span></a></div><div data-reactid="553"><a href="http://mobile.ant.design" data-reactid="554">Ant Design Mobile</a><span data-reactid="555"> - </span><span data-reactid="556">Mobile UI</span></div><div data-reactid="557"><a target="_blank" rel="noopener noreferrer" href="https://github.com/dvajs/dva" data-reactid="558">dva</a><!-- react-text: 559 --> - <!-- /react-text --><span data-reactid="560">Framework</span></div><div data-reactid="561"><a target="_blank" rel="noopener noreferrer" href="https://github.com/dvajs/dva-cli" data-reactid="562">dva-cli</a><!-- react-text: 563 --> -<!-- /react-text --><span data-reactid="564">Developer Tools</span></div><div data-reactid="565"><a target="_blank" rel="noopener noreferrer" href="https://eggjs.org/" data-reactid="566">Egg</a><span data-reactid="567"> - </span><span data-reactid="568">Enterprise Node Framework</span></div><div data-reactid="569"><a target="_blank" rel="noopener noreferrer" href="https://antv.alipay.com/" data-reactid="570">AntV</a><span data-reactid="571"> - </span><span data-reactid="572">Data Visualization</span></div><div data-reactid="573"><a target="_blank" rel="noopener noreferrer" href="http://motion.ant.design" data-reactid="574">Ant Motion</a><span data-reactid="575"> - </span><span data-reactid="576">Motion Soluction</span></div><div data-reactid="577"><a target="_blank" rel="noopener noreferrer" href="http://library.ant.design/" data-reactid="578">AntD Library</a><span data-reactid="579"> - </span><span data-reactid="580">Axure library</span></div><div data-reactid="581"><a target="_blank" rel="noopener noreferrer" href="http://ux.ant.design" data-reactid="582">Ant UX</a><span data-reactid="583"> - </span><span data-reactid="584">Sitemap Template</span></div></li><li data-reactid="585"><h2 data-reactid="586"><i class="anticon anticon-customer-service" data-reactid="587"></i><!-- react-text: 588 --> <!-- /react-text --><span data-reactid="589">Community</span></h2><div data-reactid="590"><a href="/changelog" data-reactid="591"><span data-reactid="592">Change Log</span></a></div><div data-reactid="593"><a target="_blank" rel="noopener noreferrer" href="https://github.com/ant-design/ant-design/wiki/FAQ" data-reactid="594"><span data-reactid="595">FAQ</span></a></div><div data-reactid="596"><a target="_blank" rel="noopener noreferrer" href="https://gitter.im/ant-design/ant-design" data-reactid="597"><span data-reactid="598">Chat Room (中文)</span></a></div><div data-reactid="599"><a target="_blank" rel="noopener noreferrer" href="https://gitter.im/ant-design/ant-design-english" data-reactid="600"><span data-reactid="601">Chat Room (English)</span></a></div><div data-reactid="602"><a target="_blank" rel="noopener noreferrer" href="http://new-issue.ant.design/" data-reactid="603"><span data-reactid="604">Bug Report</span></a></div><div data-reactid="605"><a target="_blank" rel="noopener noreferrer" href="https://github.com/ant-design/ant-design/issues" data-reactid="606"><span data-reactid="607">Issues</span></a></div><div data-reactid="608"><a target="_blank" rel="noopener noreferrer" href="http://stackoverflow.com/questions/tagged/antd" data-reactid="609"><span data-reactid="610">StackOverflow</span></a></div><div data-reactid="611"><a target="_blank" rel="noopener noreferrer" href="https://segmentfault.com/t/antd" data-reactid="612"><span data-reactid="613">SegmentFault</span></a></div></li><li data-reactid="614"><h2 data-reactid="615"><!-- react-text: 616 -->Copyright © <!-- /react-text --><!-- react-text: 617 -->2017<!-- /react-text --></h2><div data-reactid="618"><span data-reactid="619">Created by AIUX</span></div><div data-reactid="620"><!-- react-text: 621 -->Built with <!-- /react-text --><a target="_blank" rel="noopener noreferrer" href="https://github.com/benjycui/bisheng" data-reactid="622">BiSheng</a></div></li></ul></footer></div>
|
||
</div>
|
||
<script src="/common.js"></script>
|
||
<script src="/index.js"></script>
|
||
</body>
|
||
</html>
|