smhost-template-forms
v0.2.1
Published
DaisyUI + RJSF Forms.
Downloads
4
Readme
SpringMicroHost Template Forms
Uses react-jsonschema-form and theming heavily inspired by https://github.com/xtivia/rjsf-tailwind-daisyui-example/tree/main
Usage
import { FormProps } from "@rjsf/utils";
import validator from "@rjsf/validator-ajv8";
import { DaisyUIForm } from "smhost-template-forms";
function MyForm(props: FormProps) {
return <DaisyUIForm {...props} validator={validator} schema={props.schema} />;
}