mirror of
https://github.com/vercel/commerce.git
synced 2025-05-16 14:36:59 +00:00
9 lines
184 B
TypeScript
9 lines
184 B
TypeScript
'use client';
|
|
|
|
import { NextStudio } from 'next-sanity/studio';
|
|
import config from '@/sanity.config';
|
|
|
|
export default function AdminPage() {
|
|
return <NextStudio config={config} />;
|
|
}
|