File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -333,7 +333,7 @@ React Hook Form has made it easy to integrate with external UI component librari
333
333
``` typescript copy sandbox="https://codesandbox.io/s/react-hook-form-with-ui-library-ts-forked-qjgkx"
334
334
import Select from " react-select"
335
335
import { useForm , Controller , SubmitHandler } from " react-hook-form"
336
- import Input from " @material-ui/core/Input "
336
+ import { Input } from " @material-ui/core"
337
337
338
338
interface IFormInput {
339
339
firstName: string
@@ -384,7 +384,7 @@ const App = () => {
384
384
```javascript copy sandbox="https:// codesandbox.io/s/react-hook-form-with-ui-library-forked-fp5r3"
385
385
import Select from " react-select"
386
386
import { useForm , Controller } from " react-hook-form"
387
- import Input from " @material-ui/core/Input "
387
+ import { Input } from " @material-ui/core"
388
388
389
389
const App = () => {
390
390
const { control, handleSubmit } = useForm ({
You can’t perform that action at this time.
0 commit comments