wip: better desktop file status state and timeline

This commit is contained in:
Adam
2025-09-25 07:04:36 -05:00
parent 945de4eddc
commit b207ed2b7b
7 changed files with 288 additions and 159 deletions

View File

@@ -6,8 +6,7 @@ function strip(text: string): string {
const match = text.match(wrappedRe)
return match ? match[2] : text
}
export default function Markdown(props: { text: string; class?: string }) {
export function Markdown(props: { text: string; class?: string }) {
const marked = useMarked()
const [html] = createResource(
() => strip(props.text),