1
2
3
4
5
6
7
8
use leptos::*;

#[component]
pub fn Button(cx: Scope, children: Children) -> impl IntoView {
	view! {cx,
		<button>{children(cx)}</button>
	}
}