new form and form tweaks

This commit is contained in:
Elijah Lucian
2021-07-17 11:52:03 -06:00
parent 2ebe8bcd1f
commit 4a1507eba4
25 changed files with 215 additions and 58 deletions
+3 -1
View File
@@ -1,7 +1,9 @@
import { InputNumber as AntInputNumber, InputNumberProps } from 'antd'
import './style.scss'
type Props = InputNumberProps
export const InputNumber = (props: Props) => {
return <AntInputNumber {...props} />
return <AntInputNumber className="dank-input-number" {...props} />
}