summaryrefslogtreecommitdiffstats
path: root/src/components/MDX/index.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-26 12:32:30 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-26 12:32:30 +0100
commit7e12b2aa7f511e70b727bd865a0b5d0ac6723cb8 (patch)
tree88d6ebeeaa20848e8325c6f5c2aaa8946c7ae1a6 /src/components/MDX/index.tsx
parenta09d6f1639235e668a7dd0dee5392ab1cc16dd8c (diff)
chore: create a Link 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 d306f4e..5ebe6bf 100644
--- a/src/components/MDX/index.tsx
+++ b/src/components/MDX/index.tsx
@@ -1,3 +1,4 @@
import CodeBlock from './CodeBlock/CodeBlock';
+import Link from './Link/Link';
-export { CodeBlock };
+export { CodeBlock, Link };