beet_design 0.0.8

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



/// Basic analytics
#[template]
pub fn Analytics() -> impl Bundle {
	let analytics = beet_net::prelude::ANALYTICS_JS.to_string();
	rsx! {
		<script {InnerText(analytics)}/>
	}
}