Skip to content

Commit b41c9f2

Browse files
committed
fix default export
1 parent 8ca532e commit b41c9f2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

site/components/InteractiveGraphicsCanvas.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ interface InteractiveGraphicsCanvasProps {
1313
width?: number | string
1414
}
1515

16-
export default function InteractiveGraphicsCanvas({
16+
export function InteractiveGraphicsCanvas({
1717
graphics,
1818
showLabelsByDefault = true,
1919
showGrid = true,
@@ -305,3 +305,5 @@ export default function InteractiveGraphicsCanvas({
305305
</div>
306306
)
307307
}
308+
309+
export default InteractiveGraphicsCanvas

0 commit comments

Comments
 (0)