7 lines
170 B
TypeScript
Executable File
7 lines
170 B
TypeScript
Executable File
import * as React from 'react';
|
|
interface FormContextType {
|
|
controlId?: any;
|
|
}
|
|
declare const FormContext: React.Context<FormContextType>;
|
|
export default FormContext;
|