9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
export default function ShopTemplatesPage() {
|
|
return (
|
|
<div>
|
|
<h1 className="text-2xl font-bold">店铺模板</h1>
|
|
<p className="mt-2 text-muted-foreground">编辑店铺主页模板组件</p>
|
|
</div>
|
|
)
|
|
}
|