Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
/** @jsx jsx */
import 'babel-polyfill';
import ReactDOM from 'react-dom';
import {jsx, Styled} from 'theme-ui';
import {Link as RouterLink} from 'react-router-dom';
/* MDX */
export const H1 = Styled.h1;
export const H2 = Styled.h2;
export const H3 = Styled.h3;
export const H4 = Styled.h4;
export const P = Styled.p;
export const Li = Styled.li;
export const Ol = Styled.ol;
/* Layout/Variant */
export const Main = ({children}) => <main>{children}</main>;
export const Section = ({children}) => <section>{children}</section>;
export const Header = ({children}) => <header>{children}</header>;
export const Nav = ({children}) => <nav>{children}</nav>;
export const Footer = ({children}) => <footer>{children}</footer>;
export const Link = ({a, children}) => (
{children}
);
/*
MDX elements that can be rendered outside of markdown