Skip to content

MNThomson/htmlrs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

htmlrs

github crates.io build status

Usage

cargo add htmlrs

Take a look at the examples folder!

use htmlrs::{component, html, view, Children, IntoView}; #[component] fn Text(text: String) -> impl IntoView { view! {<span>{text}</span>} } #[component] fn TextInto(#[prop(into)] text: String) -> impl IntoView { view! {<span>{text}</span>} } #[component] fn Page(children: Children) -> impl IntoView { view! {<div>{children()}</div>} } fn main() { let page = html! { <Page> <Text text="hello".to_string() /> <TextInto text="world" /> </Page> }; println!("{}", page); assert_eq!(page, "<div><span>hello</span><span>world</span></div>") }

About

html in Rust (RSX)

Topics

Resources

Stars

Watchers

Forks

Contributors

Languages