chore: deprecate memo creation stats legacy api

This commit is contained in:
Steven
2023-12-23 18:35:47 +08:00
parent 42608cdd8f
commit b8eaf1d57e
10 changed files with 565 additions and 201 deletions

View File

@ -1,6 +1,6 @@
import MemoCreationHeatMap from "./MemoCreationHeatMap";
import SearchBar from "./SearchBar";
import TagList from "./TagList";
import UsageHeatMap from "./UsageHeatMap";
const HomeSidebar = () => {
return (
@ -8,7 +8,7 @@ const HomeSidebar = () => {
<div className="px-4 pr-8 mb-4 w-full">
<SearchBar />
</div>
<UsageHeatMap />
<MemoCreationHeatMap />
<TagList />
</aside>
);