Files
PolyMPR/routes/(apps)/students/partials/(admin)/consult.tsx
T
2025-01-28 10:03:20 +01:00

21 lines
544 B
TypeScript

import ConsultStudents from "../../(_islands)/ConsultStudents.tsx";
import {
getPartialsConfig,
makePartials,
} from "$root/defaults/makePartials.tsx";
import { FreshContext } from "$fresh/server.ts";
import { State } from "$root/defaults/interfaces.ts";
// deno-lint-ignore require-await
async function Students(_request: Request, _context: FreshContext<State>) {
return (
<>
<h2>Consult students</h2>
<ConsultStudents />
</>
);
}
export const config = getPartialsConfig();
export default makePartials(Students);