[refactor] Remove UI components and associated assets

This commit is contained in:
2025-08-21 18:19:39 +02:00
parent ffbf5e6aa3
commit 68311051ba
47 changed files with 348 additions and 1432 deletions

View File

@@ -1,8 +0,0 @@
//! This crate contains all shared fullstack server functions.
use dioxus::prelude::*;
/// Echo the user input on the server.
#[server(Echo)]
pub async fn echo(input: String) -> Result<String, ServerFnError> {
Ok(input)
}