echoes/frontend/app/routes.tsx

18 lines
379 B
TypeScript
Raw Normal View History

import ErrorPage from "hooks/error";
import layout from "themes/echoes/layout";
import article from "themes/echoes/article";
import about from "themes/echoes/about";
export default function Routes() {
const args = {
title: "我的页面",
theme: "dark",
nav: '<a href="h">a</a>'
};
return layout.render({
children: article.render(args),
args,
});
2024-11-27 19:52:49 +08:00
}