import React from "react"; import ReactMarkdown from "react-markdown"; import "./styles/markdown_styles_dark.css"; import "./styles/markdown_styles_light.css"; export default function BlogPost({ markdown, theme }: { markdown: string; theme: "LIGHT" | "DARK"; }) { return
{markdown}
}