diff --git a/src/components/LoadedCode.tsx b/src/components/LoadedCode.tsx index 45cd3da..3045a12 100644 --- a/src/components/LoadedCode.tsx +++ b/src/components/LoadedCode.tsx @@ -18,15 +18,10 @@ export const GITHUB_STORY = (componentName: string, storyName: string) => export type TEMPLATE = Record>; -export const LoadedCode = ({ - from, - className, - template, -}: { - from: string; - className?: string; - template?: TEMPLATE; -}) => { +export const LoadedCode = forwardRef< + HTMLDivElement, + { from: string; className?: string; template?: TEMPLATE } +>(({ from, className, template }, ref) => { const [state, setState] = useState(); const { toast } = useToast(); @@ -66,7 +61,10 @@ export const LoadedCode = ({ }, [state, template]); return ( -
+
); -}; +}); +LoadedCode.displayName = "LoadedCode"; export const Code = forwardRef< HTMLDivElement,