Files
cash-stacks/frontend/src/elements/Input/index.tsx
T
Elijah Lucian 01a1876b3d motorin along
2021-07-15 23:06:36 -06:00

8 lines
187 B
TypeScript

import { Input as AntInput, InputProps } from 'antd'
type Props = InputProps
export const Input = (props: Props) => {
return <AntInput className="dank-input" {...props}></AntInput>
}