blob: f6cdf104e5169167c53da13835c1337a066f6d29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
[@react.component]
let make = (~body: string) => {
<span
className={Cx.make([
"markdown",
"block w-full p-8 rounded-md",
Theme.background(Theme.Color.Gray4),
Theme.text(Theme.Color.Gray12),
])}
dangerouslySetInnerHTML={"__html": body}
/>;
};
|