| 2 | import { ComponentPreview } from '../ComponentPreview/ComponentPreview'; |
| 3 | |
| 4 | interface StoryWrapperProps { |
| 5 | attributes: CanvasAttributes; |
| 6 | component: React.FC<any>; |
| 7 | } |
| 8 | |
| 9 | export function StoryWrapper({ attributes, component: Component }: StoryWrapperProps) { |
| 10 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected