registry.tsx 365 B

1234567891011121314
  1. "use client";
  2. import { defineRegistry } from "@json-render/react";
  3. import { shadcnComponents } from "@json-render/shadcn";
  4. import { catalog } from "./catalog";
  5. import { websiteComponents } from "./website-components";
  6. export const { registry } = defineRegistry(catalog, {
  7. components: {
  8. ...shadcnComponents,
  9. ...websiteComponents,
  10. },
  11. actions: {},
  12. });