You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

562 B

order title
1 [{zh-CN 国际化} {en-US Localization}]

zh-CN

LocaleProvider 包裹你的应用,并引用对应的语言包。

en-US

Wrap your app with LocaleProvider, and apply the corresponding language package.

import { Pagination, LocaleProvider } from 'antd';
import enUS from 'antd/lib/locale-provider/en_US';

const App = () => (
  <div>
    <Pagination defaultCurrent={1} total={50} showSizeChanger />
  </div>
);

ReactDOM.render(
  <LocaleProvider locale={enUS}>
    <App />
  </LocaleProvider>
, mountNode);