Read-only Solid renderer that is safe to use outside a Solid context subtree — the theme adapter is passed via the resolver prop.
resolver
Always renders read-only; pair with SchemaComponent for editable forms. Mirrors the contract of the React <SchemaView>.
SchemaComponent
<SchemaView>
import { SchemaView } from "schema-components/solid/SchemaView";export default function UserCard(props: { user: User }) { return <SchemaView schema={userSchema} value={props.user} />;} Copy
import { SchemaView } from "schema-components/solid/SchemaView";export default function UserCard(props: { user: User }) { return <SchemaView schema={userSchema} value={props.user} />;}
Read-only Solid renderer that is safe to use outside a Solid context subtree — the theme adapter is passed via the
resolverprop.Always renders read-only; pair with
SchemaComponentfor editable forms. Mirrors the contract of the React<SchemaView>.