Skip to content

Commit

Permalink
Merge branch 'master' of github.com:zackify/validify
Browse files Browse the repository at this point in the history
  • Loading branch information
zackify committed Apr 25, 2021
2 parents 35996ca + de031e9 commit fd63650
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/helpers/input.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import useField, { FieldProps } from "../../src/use-field";
import { useField, FieldProps } from "../../src/use-field";

const Input = ({ name, rules }: FieldProps) => {
let { handleChange, handleBlur, value, errors } = useField({
Expand Down
4 changes: 2 additions & 2 deletions tests/helpers/submit.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import useSubmit from '../../src/use-submit';
import React from "react";
import { useSubmit } from "../../src/use-submit";

type Props = {
onSubmit?: (values: any) => any;
Expand Down

0 comments on commit fd63650

Please sign in to comment.