mirror of
https://github.com/ant-design/ant-design.git
synced 2025-07-01 09:31:14 +08:00
7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
import React from 'react';
|
|
import { InputNumber } from 'antd';
|
|
|
|
const App: React.FC = () => <InputNumber min={1} max={10} defaultValue={3} variant="borderless" />;
|
|
|
|
export default App;
|