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