import React, {forwardRef} from 'react' import {Input as InputImpl} from 'reakit' import type {InputProps} from 'reakit' import {useFormControlContext} from './FormControl' export type {InputProps} const Input = forwardRef((props, ref) => { const id = useFormControlContext() return ( ) }) export default Input