docs: select/demo/coordinate.md - English translation (#3011)

English translation of labels/data
This commit is contained in:
Marius Ileana 2016-09-12 05:10:27 +03:00 committed by Benjy Cui
parent bde1711597
commit a8cc57cd13

View File

@ -22,10 +22,10 @@ Using the [Cascader](/components/cascader) component is strongly recommended ins
import { Select } from 'antd';
const Option = Select.Option;
const provinceData = ['浙江', '江苏'];
const provinceData = ['Zhejiang', 'Jiangsu'];
const cityData = {
浙江: ['杭州', '宁波', '温州'],
江苏: ['南京', '苏州', '镇江'],
Zhejiang: ['Hangzhou', 'Ningbo', 'Wenzhou'],
Jiangsu: ['Nanjing', 'Suzhou', 'Zhenjiang'],
};
const App = React.createClass({