mirror of
https://github.com/adoyle0/thaw.git
synced 2025-02-11 03:13:11 -05:00
22 lines
466 B
Rust
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>
|
|
}
|
|
}
|