react-forms/src/FormContext.js

17 lines
354 B
JavaScript
Raw Normal View History

2021-07-07 11:03:35 +02:00
import React, { Component } from 'react'
const FormContext = React.createContext({ data: null });
export default FormContext
export class FormConsumer extends Component
{
render()
{
return (
<FormContext.Consumer>
{(props) => this.props.children(props)}
</FormContext.Consumer>
)
}
}