react95 render map for @react-formless/core
> React95 render map for @react-formless/core.
Check custom renderers in action
first install core package and reac95 renderer (using yarn or npm)
``sh`
yarn add @react-formless/core @react-formless/react95 --dev
then you may enjoy windows 95 experience within your forms ;)
`typescript
import * as React from "react"
import { useFormHook, FormView, FormSchema } from "@react-formless/core"
import { react95Elements, react95Inputs } from "@react-formless/react95"
export type Car = { make: string }
const carMakes: Array<[string, string]> = [
["Tesla", "tesla-id"],
["Honda", "honda-id"],
["BMW", "bmw-id"]
]
const schema: FormSchema
export const AntDesignForm: React.FC = () => {
const { formViewProps } = useFormHook({ schema })
return
}
``
Checkout full example
For more in depth documentation see @react-formless.