orbital-core-components 0.1.1

Themed Orbital UI components for Leptos applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use leptos::prelude::*;

/// Primary column — grows to fill available width beside the aside.
#[slot]
pub struct Content {
    pub children: Children,
}

/// Secondary column — minimally fits content, sticky on the right in wide layouts.
#[slot]
pub struct Aside {
    pub children: Children,
}