jb-form
Version:
form web component with extended feature like validation and dirty check
9 lines (8 loc) • 397 B
TypeScript
import React from 'react';
import 'jb-form';
import { type JBFormWebComponent } from 'jb-form';
import { EventProps } from './events-hook.js';
export * from './context.js';
export type Props = React.HTMLProps<JBFormWebComponent> & EventProps;
export * from './context.js';
export declare const JBForm: React.ForwardRefExoticComponent<Omit<Props, "ref"> & React.RefAttributes<JBFormWebComponent>>;