echoes/frontend/app/routes.tsx

13 lines
239 B
TypeScript
Raw Normal View History

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