add navbar & advisers page & compatibility & meditation fix hydration error on /compatibility/[id]
19 lines
434 B
TypeScript
19 lines
434 B
TypeScript
import { Suspense } from "react";
|
|
|
|
import {
|
|
MeditationSection,
|
|
MeditationSectionSkeleton,
|
|
} from "@/components/domains/dashboard";
|
|
import { loadMeditations } from "@/entities/dashboard/loaders";
|
|
|
|
export default function Meditation() {
|
|
return (
|
|
<Suspense fallback={<MeditationSectionSkeleton />}>
|
|
<MeditationSection
|
|
promise={loadMeditations()}
|
|
gridDisplayMode="vertical"
|
|
/>
|
|
</Suspense>
|
|
);
|
|
}
|