web_lib

Common web application libraries
git clone https://radroots.dev/git/web_lib.git
Log | Files | Refs | LICENSE

index.ts (217B)


      1 import { theme_app_layout } from "./app/index.js";
      2 import { ThemeLayoutKey, ThemeLayoutParam } from "./types.js";
      3 
      4 export const theme_layouts: Record<ThemeLayoutKey, ThemeLayoutParam> = {
      5     app: theme_app_layout,
      6 };