chore: restructure packages

This commit is contained in:
reya
2024-01-03 11:12:36 +07:00
parent 9f27d68533
commit ba13ac7535
57 changed files with 383 additions and 606 deletions
+14
View File
@@ -0,0 +1,14 @@
import { Note, ThreadNote } from "@lume/ark";
import { ReplyList } from "@lume/ui";
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} />
<ReplyList eventId={id} title="All replies" className="mt-5" />
</div>
</WVList>
);
}