uchill/front_minimal/src/app/dashboard/my-progress/page.jsx

12 lines
345 B
JavaScript

import { CONFIG } from 'src/config-global';
import { MyProgressView } from 'src/sections/my-progress/view';
// ----------------------------------------------------------------------
export const metadata = { title: `Мой прогресс | ${CONFIG.site.name}` };
export default function Page() {
return <MyProgressView />;
}