9 lines
306 B
TypeScript
9 lines
306 B
TypeScript
export default function ReviewPage({ params: _params }: { params: Promise<{ id: string }> }) {
|
|
return (
|
|
<div className="container mx-auto py-8 px-4">
|
|
<h1 className="text-2xl font-bold">评价</h1>
|
|
<p className="mt-2 text-muted-foreground">对本次服务进行评价</p>
|
|
</div>
|
|
)
|
|
}
|