import React from "react";
import { Text, Image as UIImage, Link } from "theme-ui";
import ReactMarkdown from "react-markdown";
function Paragraph(props) {
return ;
}
function Heading({ level, ...props }) {
const fontSize = level === 1 ? 5 : level === 2 ? 3 : 1;
return (
);
}
function Image(props) {
return ;
}
function ListItem(props) {
return ;
}
function Markdown({ source }) {
const renderers = {
paragraph: Paragraph,
heading: Heading,
image: Image,
link: Link,
listItem: ListItem,
};
return ;
}
export default Markdown;