Use cargo workspaces

This commit is contained in:
2022-03-12 14:14:18 +01:00
parent 6d16f34dd4
commit 6d2ae21956
30 changed files with 936 additions and 368 deletions
+12
View File
@@ -0,0 +1,12 @@
use yew::prelude::*;
#[function_component(App)]
fn app() -> Html {
html! {
<h1>{ "Hello World" }</h1>
}
}
fn main() {
yew::start_app::<App>();
}