Skip to content

Commit

Permalink
fix: removed the mdx container import
Browse files Browse the repository at this point in the history
  • Loading branch information
Cayla Hamann committed Jul 14, 2020
1 parent f94be6a commit cfa2601
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/components/MDXContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ import Caution from './Caution';
import Important from './Important';
import Tip from './Tip';
import Intro from './Intro';
import MDXCodeBlock from './MDXCodeBlock';
import Image from './Image';
import CodeSnippet from './CodeSnippet';

import styles from './MDXContainer.module.scss';

Expand All @@ -24,9 +23,7 @@ const components = {
Important,
Tip,
Intro,
Image,
code: MDXCodeBlock,
pre: (props) => props.children,
code: (props) => <CodeSnippet {...props} />,
};

const MDXContainer = ({ className, children }) => {
Expand Down

0 comments on commit cfa2601

Please sign in to comment.