import { getPartialsConfig, makePartials, } from "$root/defaults/makePartials.tsx"; import { FreshContext } from "$fresh/server.ts"; import { State } from "$root/defaults/interfaces.ts"; import SelfPortrait from "$root/routes/(apps)/students/(_components)/SelfPortrait.tsx"; // deno-lint-ignore require-await export async function Index(_request: Request, context: FreshContext) { return ( <>

Welcome {context.state.session?.givenName}!

Your amU identity

); } export const config = getPartialsConfig(); export default makePartials(Index);