mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 15:49:10 +08:00
28 lines
778 B
TypeScript
28 lines
778 B
TypeScript
|
import React, { useState } from 'react';
|
||
|
import { SmileOutlined } from '@ant-design/icons';
|
||
|
import { Button, ConfigProvider, Select } from 'antd';
|
||
|
|
||
|
// Ant Design site use `es` module for view
|
||
|
// but do not replace related lib `lib` with `es`
|
||
|
// which do not show correct in site.
|
||
|
// We may need do convert in site also.
|
||
|
const App: React.FC = () => {
|
||
|
const [prefixCls, setPrefixCls] = useState('light');
|
||
|
|
||
|
return (
|
||
|
<div>
|
||
|
<Button style={{ marginBottom: '12px' }} type="primary" onClick={() => setPrefixCls('dark')}>
|
||
|
toggle prefixCls
|
||
|
</Button>
|
||
|
<div>
|
||
|
<ConfigProvider prefixCls={prefixCls} iconPrefixCls="bamboo">
|
||
|
<SmileOutlined />
|
||
|
<Select />
|
||
|
</ConfigProvider>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|