mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 07:39:10 +08:00
11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
|
import React from 'react';
|
||
|
import { ConfigProvider, Input } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<ConfigProvider theme={{ token: { controlHeight: 28 } }}>
|
||
|
<Input placeholder="Basic usage" />
|
||
|
</ConfigProvider>
|
||
|
);
|
||
|
|
||
|
export default App;
|