19 lines
595 B
TypeScript
19 lines
595 B
TypeScript
import { SchoolsClient } from "@/modules/school/components/schools-view"
|
|
import { getSchools } from "@/modules/school/data-access"
|
|
|
|
export const dynamic = "force-dynamic"
|
|
|
|
export default async function AdminSchoolsPage() {
|
|
const schools = await getSchools()
|
|
return (
|
|
<div className="flex h-full flex-col space-y-8 p-8">
|
|
<div className="space-y-1">
|
|
<h2 className="text-2xl font-bold tracking-tight">Schools</h2>
|
|
<p className="text-muted-foreground">Manage schools for multi-school setups.</p>
|
|
</div>
|
|
<SchoolsClient schools={schools} />
|
|
</div>
|
|
)
|
|
}
|
|
|