motorin along

This commit is contained in:
Elijah Lucian
2021-07-15 23:06:36 -06:00
parent 8ff02f6149
commit 01a1876b3d
23 changed files with 236 additions and 250 deletions
@@ -0,0 +1,7 @@
import { InputNumber as AntInputNumber, InputNumberProps } from 'antd'
type Props = InputNumberProps
export const InputNumber = (props: Props) => {
return <AntInputNumber {...props} />
}