Partials OK, auto navbar and content

This commit is contained in:
Kevin FEDYNA
2025-01-15 15:43:52 +01:00
parent ed2997d51f
commit 9db588ff02
24 changed files with 510 additions and 321 deletions
+23
View File
@@ -0,0 +1,23 @@
import { JSX } from "preact";
import { Partial } from "$fresh/runtime.ts";
import { RouteConfig } from "$fresh/server.ts";
export function getConfig(): RouteConfig {
return {
skipAppWrapper: true,
skipInheritedLayouts: true,
};
}
// deno-lint-ignore no-explicit-any
export function makePartials<Props extends any>(
page: (props: Props) => JSX.Element,
) {
return function WrappedElements(props: Props): JSX.Element {
return (
<Partial name="body">
{page(props)}
</Partial>
);
};
}