"use client"; import { useState } from "react"; import { Card } from "@/components/ui/Card"; import { Button } from "@/components/ui/Button"; import { EmptyState } from "@/components/ui/EmptyState"; export default function PagePage() { const [open, setOpen] = useState(false); return (

日常记录

饮食、运动、排泄、体重变化记录

{

日常记录 页面内容

路由: /日常记录

}
); }