aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/MDX/index.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-26 12:43:20 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-26 12:43:20 +0100
commitc18f2f8a9d189343db9740945196af46c903d2d9 (patch)
treeaa676f9aa24edc6e5d6eab841b134f028800f5ba /src/components/MDX/index.tsx
parent7e12b2aa7f511e70b727bd865a0b5d0ac6723cb8 (diff)
chore: create a ResponsiveImage component for MDX rendering
Diffstat (limited to 'src/components/MDX/index.tsx')
-rw-r--r--src/components/MDX/index.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/MDX/index.tsx b/src/components/MDX/index.tsx
index 5ebe6bf..acb885e 100644
--- a/src/components/MDX/index.tsx
+++ b/src/components/MDX/index.tsx
@@ -1,4 +1,5 @@
import CodeBlock from './CodeBlock/CodeBlock';
import Link from './Link/Link';
+import ResponsiveImage from './ResponsiveImage/ResponsiveImage';
-export { CodeBlock, Link };
+export { CodeBlock, Link, ResponsiveImage };