feat: no longer export by default Form component

BREAKING CHANGE: you must use `import { Form } from 'react-component-form'`
This commit is contained in:
divlo
2021-06-17 19:24:21 +02:00
parent e3c4c53f23
commit 7ac46825ee
4 changed files with 11 additions and 8 deletions

View File

@ -1,7 +1,7 @@
import React from 'react'
import { render, cleanup, fireEvent } from '@testing-library/react'
import Form, { HandleForm } from '../src'
import { Form, HandleForm } from '../src'
afterEach(cleanup)