9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
export default function NewServicePage() {
|
|
return (
|
|
<div>
|
|
<h1 className="text-2xl font-bold">发布服务</h1>
|
|
<p className="mt-2 text-muted-foreground">创建或编辑陪玩服务</p>
|
|
</div>
|
|
)
|
|
}
|