5 lines
121 B
JavaScript
5 lines
121 B
JavaScript
import React from 'react';
|
|
var FormContext = React.createContext({
|
|
controlId: undefined
|
|
});
|
|
export default FormContext; |