Files
Dorod-Sky/skyvern-frontend/src/routes/discover/DiscoverPage.tsx
Shuchang Zheng d34a403c8f UI for workflow templates (#1715)
Co-authored-by: Muhammed Salih Altun <muhammedsalihaltun@gmail.com>
2025-02-04 16:40:55 +03:00

14 lines
275 B
TypeScript

import { PromptBox } from "../tasks/create/PromptBox";
import { WorkflowTemplates } from "./WorkflowTemplates";
function DiscoverPage() {
return (
<div className="space-y-10">
<PromptBox />
<WorkflowTemplates />
</div>
);
}
export { DiscoverPage };