import React from 'react';
import { MDXLayout } from './mdx-layout';
// loading mdx files relies on bit's builtin mdx-loader support.
// @ts-ignore
import AllMdExample from './example-all-md.mdx';
// @ts-ignore
import ExampleButton from './example-button.mdx';
// @ts-ignore
import ExampleNoop from './example-noop.mdx';
// @ts-ignore
import ExampleLink from './example-routing-link.mdx';
export const Preview = () => {
return (
);
};
export const ButtonDocs = () => {
return (
);
};
export const NoopDocs = () => {
return (
);
};
export const LinkDocs = () => {
return (
);
};