feat: add rust browser terminal prototype
This commit is contained in:
16
app/src/pages/terminal.rs
Normal file
16
app/src/pages/terminal.rs
Normal file
@@ -0,0 +1,16 @@
|
||||
use leptos::prelude::*;
|
||||
|
||||
use crate::components::layout::{AdminShell, Breadcrumb};
|
||||
use crate::terminal::TerminalPanel;
|
||||
|
||||
#[component]
|
||||
pub fn TerminalPage() -> impl IntoView {
|
||||
view! {
|
||||
<AdminShell>
|
||||
<Breadcrumb current="浏览器终端" />
|
||||
<section class="cowa-work-surface terminal-page-shell">
|
||||
<TerminalPanel />
|
||||
</section>
|
||||
</AdminShell>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user