mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
66 lines
1.6 KiB
Rust
66 lines
1.6 KiB
Rust
#![no_implicit_prelude]
|
|
|
|
// Shadow primitives
|
|
#[allow(non_camel_case_types)]
|
|
pub struct bool;
|
|
#[allow(non_camel_case_types)]
|
|
pub struct char;
|
|
#[allow(non_camel_case_types)]
|
|
pub struct f32;
|
|
#[allow(non_camel_case_types)]
|
|
pub struct f64;
|
|
#[allow(non_camel_case_types)]
|
|
pub struct i128;
|
|
#[allow(non_camel_case_types)]
|
|
pub struct i16;
|
|
#[allow(non_camel_case_types)]
|
|
pub struct i32;
|
|
#[allow(non_camel_case_types)]
|
|
pub struct i64;
|
|
#[allow(non_camel_case_types)]
|
|
pub struct i8;
|
|
#[allow(non_camel_case_types)]
|
|
pub struct isize;
|
|
#[allow(non_camel_case_types)]
|
|
pub struct str;
|
|
#[allow(non_camel_case_types)]
|
|
pub struct u128;
|
|
#[allow(non_camel_case_types)]
|
|
pub struct u16;
|
|
#[allow(non_camel_case_types)]
|
|
pub struct u32;
|
|
#[allow(non_camel_case_types)]
|
|
pub struct u64;
|
|
#[allow(non_camel_case_types)]
|
|
pub struct u8;
|
|
#[allow(non_camel_case_types)]
|
|
pub struct usize;
|
|
|
|
fn main() {
|
|
::yew::html! { <>{ "Hi" }</> };
|
|
::yew::html! { <>{ ::std::format!("Hello") }</> };
|
|
::yew::html! { <>{ ::std::string::ToString::to_string("Hello") }</> };
|
|
|
|
let msg = "Hello";
|
|
::yew::html! { <div>{ msg }</div> };
|
|
|
|
let subview = ::yew::html! { "subview!" };
|
|
::yew::html! { <div>{ subview }</div> };
|
|
|
|
let subview = || ::yew::html! { "subview!" };
|
|
::yew::html! { <div>{ subview() }</div> };
|
|
|
|
::yew::html! {
|
|
<ul>
|
|
{ for ::std::iter::Iterator::map(0..3, |num| { ::yew::html! { <span>{ num }</span> }}) }
|
|
</ul>
|
|
};
|
|
|
|
let item = |num| ::yew::html! { <li>{ ::std::format!("item {}!", num) }</li> };
|
|
::yew::html! {
|
|
<ul>
|
|
{ for ::std::iter::Iterator::map(0..3, item) }
|
|
</ul>
|
|
};
|
|
}
|