Kirito

Results 3 comments of Kirito

These examples helped me answer most of my questions. I wonder if it is what you are looking for https://formio.github.io/formio.js/app/examples/custombuilder.html https://github.com/formio/react/issues/483#issuecomment-1581980833

You to load the form dynamically and avoid any SSR, you will get rid of that problem. ```typescript import dynamic from 'next/dynamic' const Form = dynamic(() => import('@formio/react').then(mod => mod.Form),...

I think component the Component you need to add needs to be a of an specific type, not any react component `c.Components.setComponent("button", Button); ` . Since your component is missing...