From e76b22bec83b4838c072a761ea8f9a46672d377e Mon Sep 17 00:00:00 2001 From: Silver Date: Tue, 19 Nov 2024 14:17:45 -0600 Subject: [PATCH] Remove unused shell() function definition (#3254) --- examples/todo_app_sqlite_csr/src/todo.rs | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/examples/todo_app_sqlite_csr/src/todo.rs b/examples/todo_app_sqlite_csr/src/todo.rs index 9a74ae2bbc..efea1f2d66 100644 --- a/examples/todo_app_sqlite_csr/src/todo.rs +++ b/examples/todo_app_sqlite_csr/src/todo.rs @@ -4,25 +4,6 @@ use leptos::prelude::*; use serde::{Deserialize, Serialize}; use server_fn::ServerFnError; -pub fn shell(leptos_options: &LeptosOptions) -> impl IntoView { - view! { - - - - - - - - - - - - - - - } -} - #[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)] #[cfg_attr(feature = "ssr", derive(sqlx::FromRow))] pub struct Todo {