feat(dm): more stats

This commit is contained in:
Samuel 2024-12-18 16:52:46 +01:00
parent d9268a4991
commit dbd0b12b3d
No known key found for this signature in database
19 changed files with 798 additions and 1106 deletions

View file

@ -13,23 +13,6 @@ const App: Component = () => {
<Route path="/overview" component={Overview} />
<Route path="/dm/:dmid" component={DmId} />
<Route path="/group/:groupid" component={GroupId} />
<Route
path="/test"
component={() => {
console.time("first");
console.log(allThreadsOverviewQuery());
void allThreadsOverviewQuery().then((result) => {
console.log(result);
console.timeEnd("first");
console.time("second");
void allThreadsOverviewQuery().then((result) => {
console.log(result);
console.timeEnd("second");
});
});
return "";
}}
/>
</>
);
};