mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
580 B
580 B
order | title | ||||
---|---|---|---|---|---|
1 |
|
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';
function App() {
return (
<div>
<Pagination defaultCurrent={1} total={50} showSizeChanger />
</div>
);
}
ReactDOM.render(
<LocaleProvider locale={enUS}>
<App />
</LocaleProvider>
, mountNode);