新增提示词列表和提示词修改页面

This commit is contained in:
2025-03-28 20:56:13 +08:00
parent afadd79fe8
commit 65da73071d
20 changed files with 2217 additions and 479 deletions
+13
View File
@@ -0,0 +1,13 @@
import { Outlet } from "@remix-run/react";
/**
* 提示词模板管理 - 父级路由
* 仅作为嵌套路由的容器,不包含具体内容
*/
export const handle = {
breadcrumb: "提示词模板管理"
}
export default function Prompts() {
return <Outlet />;
}