Custom Registry

A custom registry using shadcn components.

Input field with a label

Open in
1<InputField
2  label="Name"
3  placeholder="Enter your name"
4/>

Select field with options

Open in
1<SelectField
2  label="Select your framework"
3  options={[
4   {"label":"React","value":"react"}
5   {"label":"Vue","value":"vue"}
6   {"label":"Angular","value":"angular"}
7   {"label":"Svelte","value":"svelte"}   
8]}
9  placeholder="Select an option"
10/>