diff --git a/apps/dashboard/src/components/details/detail-activity.tsx b/apps/dashboard/src/components/details/detail-activity.tsx new file mode 100644 index 0000000..7980900 --- /dev/null +++ b/apps/dashboard/src/components/details/detail-activity.tsx @@ -0,0 +1,45 @@ +import { useState } from "react"; + +export function DetailActivityHeader({ + title, + count, +}: { + title: string; + count?: number; +}) { + return ( +
+

{title}

+ {count != null && ( + + {count} + + )} +
+ ); +} + +export function DetailCommentBox() { + const [value, setValue] = useState(""); + + return ( +
+