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