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
+7
View File
@@ -0,0 +1,7 @@
import { Input as AntInput, InputProps } from 'antd'
type Props = InputProps
export const Input = (props: Props) => {
return <AntInput className="dank-input" {...props}></AntInput>
}