Describe the bug
A clear and concise description of what the bug is.
dependencies :
"@formio/js": "5.0.0-dev.5621.91bd945",
"@formio/react": "6.0.0-dev.568.ced0fbd",
**Expected behavior**
custom single select component should visible in the basic group components
**Screenshots**
![image](https://github.com/user-attachments/assets/47603b1e-575c-4c3f-b54d-773d9f688780)
**Desktop (please complete the following information):**
- OS: [linux]
- Browser [firefox]
- Version [22.0 lts]
**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
**Additional context**
how we can add custom component in groups
Describe the bug A clear and concise description of what the bug is. dependencies : "@formio/js": "5.0.0-dev.5621.91bd945", "@formio/react": "6.0.0-dev.568.ced0fbd",
To Reproduce Steps to reproduce the behavior:
add custom component :
register custom component :
// Register the custom component with Form.io Components.addComponent("customcomponent", SingleChoiceQnRender);
const Builder = () => { const [schema, setSchema] = useState({
display: "form",
components: [
{
type: "button",
action: "submit",
label: "Submit",
input: true,
key: "submit",
},
});
const onFormChange = (schema: any) => { setSchema(schema); };
return (
); }; export default Builder;
const formConfig = { components: [], };