9168ca53da
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
388 B
TypeScript
14 lines
388 B
TypeScript
import {
|
|
getPartialsConfig,
|
|
makePartials,
|
|
} from "$root/defaults/makePartials.tsx";
|
|
import { FreshContext } from "$fresh/server.ts";
|
|
import { State } from "$root/routes/_middleware.ts";
|
|
|
|
export async function Index(request: Request, context: FreshContext<State>) {
|
|
return <h2>Welcome to Admin.</h2>;
|
|
}
|
|
|
|
export const config = getPartialsConfig();
|
|
export default makePartials(Index);
|