uchill/front_minimal/src/app/dashboard/chat-platform/page.jsx

12 lines
325 B
JavaScript

import { CONFIG } from 'src/config-global';
import { ChatPlatformView } from 'src/sections/chat/view';
// ----------------------------------------------------------------------
export const metadata = { title: `Чат | ${CONFIG.site.name}` };
export default function Page() {
return <ChatPlatformView />;
}