mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
7 lines
181 B
TypeScript
7 lines
181 B
TypeScript
|
import React from 'react';
|
||
|
import { InputNumber } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => <InputNumber min={1} max={10} defaultValue={3} bordered={false} />;
|
||
|
|
||
|
export default App;
|