"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 (

到期提醒

到期提醒

{

到期提醒 页面内容

路由: /reminders

}
); }