feat: switch Dioxus to fullstack, add a form for creating a project

This commit is contained in:
Matouš Volf
2024-08-17 00:30:17 +02:00
parent 6b13e56840
commit 97c9779170
13 changed files with 944 additions and 50 deletions

8
src/route/mod.rs Normal file
View File

@ -0,0 +1,8 @@
use crate::components::home::Home;
use dioxus::prelude::*;
#[derive(Clone, Routable, Debug, PartialEq)]
pub(crate) enum Route {
#[route("/")]
Home {},
}