@rjsf/core
Version:
A simple React component capable of building HTML forms out of a JSON schema.
9 lines (6 loc) • 315 B
text/typescript
import Form, { FormProps, FormState, IChangeEvent } from './components/Form';
import withTheme, { ThemeProps } from './withTheme';
import getDefaultRegistry from './getDefaultRegistry';
export type { FormProps, FormState, IChangeEvent, ThemeProps };
export { withTheme, getDefaultRegistry };
export default Form;