1
2
3
4
5
6
7
8
9
10
11
12
use leptos::*;

/// AppContainer Leptos Component
#[component]
pub fn AppContainer(children: Children) -> impl IntoView {
    view! {
        <div id="AppContainer" class="flex bg-zinc-900 h-screen w-screen text-zinc-400 text-xs">
            {children()}
        </div>
    }
}