use default exports and not named exports

This commit is contained in:
Rami Bitar
2026-06-03 23:17:00 -04:00
parent a539753aa5
commit 7f86072636
21 changed files with 96 additions and 102 deletions

View File

@@ -4,7 +4,7 @@ import { Award } from "lucide-react";
import { Logos, type LogosProps } from "@/components/logos/logos";
import { frontendAiMediaAdapter } from "@/services/media-adapter";
export const logosEditor: ComponentConfig<LogosProps> = {
const logosEditor: ComponentConfig<LogosProps> = {
label: "Press / Logos",
icon: <Award size={16} />,
category: "content",
@@ -42,3 +42,5 @@ export const logosEditor: ComponentConfig<LogosProps> = {
},
render: (props) => <Logos {...props} />,
};
export default logosEditor;