diff --git a/islands/NRF/Editor.tsx b/islands/NRF/Editor.tsx index 266f523e..066f2356 100644 --- a/islands/NRF/Editor.tsx +++ b/islands/NRF/Editor.tsx @@ -25,6 +25,7 @@ export interface EditorFeature { } export interface Props { + title: string; features: EditorFeature[]; } @@ -39,7 +40,7 @@ const AnimationComponents = { "content-modeling": ContentModeling, }; -export default function Editor({ features }: Props) { +export default function Editor({ title, features }: Props) { const currentFeature = useSignal(null); useEffect(() => { @@ -175,7 +176,7 @@ export default function Editor({ features }: Props) {