Files
HKSingleParty/03_source/frontend/src/pages/components/extra/dnd/index.tsx
2025-05-28 09:55:51 +08:00

18 lines
378 B
TypeScript

import { CONFIG } from 'src/global-config';
import { DndView } from 'src/sections/_examples/extra/dnd-view';
// ----------------------------------------------------------------------
const metadata = { title: `Dnd | Components - ${CONFIG.appName}` };
export default function Page() {
return (
<>
<title>{metadata.title}</title>
<DndView />
</>
);
}