thaw/demo/src/pages/guide/installation.rs
2023-11-08 11:02:38 +08:00

22 lines
466 B
Rust

use crate::components::{Demo, DemoCode};
use leptos::*;
#[component]
pub fn InstallationPage() -> impl IntoView {
view! {
<div style="width: 896px; margin: 0 auto;">
<h1>"Installation"</h1>
<p>"Installation thaw"</p>
<Demo>
""
<DemoCode
slot
html="cargo add thaw"
>
""
</DemoCode>
</Demo>
</div>
}
}