| 6 | import type { RegistryItem } from "shadcn/registry"; |
| 7 | |
| 8 | interface ComponentLoaderProps { |
| 9 | component: RegistryItem; |
| 10 | } |
| 11 | |
| 12 | export default function ComponentLoader<TProps extends object>({ |
| 13 | component, |
nothing calls this directly
no outgoing calls
no test coverage detected