rename to cursor-mover-webapp
This commit is contained in:
parent
201f0e5f0a
commit
cc52e3e781
35 changed files with 7 additions and 7 deletions
16
crates/cursor-mover-webapp/src/views/home.rs
Normal file
16
crates/cursor-mover-webapp/src/views/home.rs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
use crate::components::Controls;
|
||||
use dioxus::prelude::*;
|
||||
|
||||
/// The Home page component that will be rendered when the current route is `[Route::Home]`
|
||||
#[component]
|
||||
pub fn Home() -> Element {
|
||||
#[css_module("/assets/styling/home.module.css")]
|
||||
struct Styles;
|
||||
|
||||
rsx! {
|
||||
div {
|
||||
class: Styles::container,
|
||||
Controls { }
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue