uchill/front_minimal/src/app/dashboard/feedback/page.jsx

12 lines
342 B
JavaScript

import { CONFIG } from 'src/config-global';
import { FeedbackView } from 'src/sections/feedback/view';
// ----------------------------------------------------------------------
export const metadata = { title: `Обратная связь | ${CONFIG.site.name}` };
export default function Page() {
return <FeedbackView />;
}