17 lines
552 B
TypeScript
17 lines
552 B
TypeScript
"use client";
|
|
import { Card } from "@/components/ui/Card";
|
|
import { Input } from "@/components/ui/Input";
|
|
|
|
export default function ContactPage() {
|
|
return (
|
|
<div className="space-y-4">
|
|
<h1 className="text-xl font-bold text-gray-800">通讯录</h1>
|
|
<Input placeholder="搜索同事..." />
|
|
<div className="space-y-2">
|
|
{["张三 · 技术部", "李四 · 产品部", "王五 · 设计部"].map((n, i) => (
|
|
<Card key={i}><p className="text-sm text-gray-700">{n}</p></Card>
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
} |