feat: cards

This commit is contained in:
Alejandro Gomez
2023-07-26 10:27:06 +02:00
parent 9e437c6425
commit 7a6f4048fb
16 changed files with 1324 additions and 11 deletions

11
src/element/markdown.tsx Normal file
View File

@ -0,0 +1,11 @@
import "./markdown.css";
import ReactMarkdown from "react-markdown";
export function Markdown({ children }) {
return (
<div className="markdown">
<ReactMarkdown children={children} />
</div>
);
}