William RICHER

Results 1 issues of William RICHER

I have this setup: ```typescript globalThis.allComponents = import.meta.glob('/javascripts/components/**/*.{jsx,tsx,js,ts}', {eager: true}); function getComponentByName(name: string) { /* find component by glob **/.{tsx, jsx} */ } customRender(name:string){ const Component = getComponentByName(name) render(() =>...