feat(column): add thread and user columns

This commit is contained in:
reya
2023-12-28 11:31:47 +07:00
parent 893f3f7181
commit 4fc3cc8a80
21 changed files with 921 additions and 22 deletions
+13
View File
@@ -0,0 +1,13 @@
import { Note, ThreadNote } from "@lume/ark";
import { WVList } from "virtua";
export function HomeRoute({ id }: { id: string }) {
return (
<WVList className="pb-5 overflow-y-auto">
<div className="px-3">
<ThreadNote eventId={id} />
<Note.ReplyList eventId={id} title="All replies" className="mt-5" />
</div>
</WVList>
);
}