This commit is contained in:
2026-07-10 22:38:58 +08:00
commit 34c7cf34fd
56 changed files with 16425 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { useNewsStore } from "@/lib/database";
import NewsEditor from "@/components/news-editor";
export default async function NewsPage() {
const newsList = await useNewsStore.findAsync({});
return (
<div className="flex flex-col h-[calc(100vh-25vh)]">
<div className="flex-1">213</div>
<NewsEditor className="max-h-52" />
</div>
);
}