30 lines
908 B
TypeScript
30 lines
908 B
TypeScript
"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 (
|
||
<div className="space-y-4">
|
||
<div className="flex items-center justify-between">
|
||
<div>
|
||
<h1 className="text-xl font-bold text-gray-800">附近医院</h1>
|
||
<p className="text-sm text-gray-500 mt-1">地图显示附近宠物医院,支持预约挂号</p>
|
||
</div>
|
||
<Button onClick={() => setOpen(true)} variant="primary" size="sm">新增</Button>
|
||
</div>
|
||
|
||
{<Card>
|
||
<p className="text-gray-500 text-sm">附近医院 页面内容</p>
|
||
<p className="text-xs text-gray-400 mt-1">路由: /附近医院</p>
|
||
</Card>}
|
||
</div>
|
||
);
|
||
}
|