From 480df17b384971fcd9492ca39ed66b3ea3199c49 Mon Sep 17 00:00:00 2001 From: Hazem Krimi Date: Fri, 15 Jan 2021 18:56:06 +0100 Subject: [PATCH] Add necessary components and embeds for content --- components/All.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/components/All.ts b/components/All.ts index e4489d2..74ee299 100644 --- a/components/All.ts +++ b/components/All.ts @@ -1,7 +1,16 @@ +import { CodePen, Gist, YouTube, CodeSandbox, Vimeo, Tweet } from 'mdx-embed'; import Image from 'next/image'; +import MDXButton from './MDXButton'; const All = { - Image + Button: MDXButton, + Image, + CodePen, + Gist, + Vimeo, + CodeSandbox, + Tweet, + YouTube }; export default All;