12 lines
229 B
Rust
Raw Normal View History

2025-10-07 10:59:52 +01:00
use leptos::*;
#[component]
pub fn WorkflowsPage() -> impl IntoView {
view! {
<div class="workflows-page">
<h1>"Workflows"</h1>
<p>"Workflow management placeholder"</p>
</div>
}
}