beet_design 0.0.8

Design system and components for beet rsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::prelude::*;
use beet::prelude::*;




pub fn get() -> impl IntoHtml {
	rsx! {
		<h1>Buckets</h1>
		<p>This example uses local storage to manage a list of items</p>
		<BucketList
			client:load
			route_prefix="/docs/design/templates/bucket_list"
			// route_prefix=routes::docs::design::templates::bucket_list::bucket_id("")
			bucket_name="buckets-demo"
		/>
	}
}