lerni 0.0.6

Lerni content framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use leptos::{IntoView, component, view};

use crate::use_frame;

/// Empty space.
#[component]
pub fn Space() -> impl IntoView {
    // We need to pop the frame to avoid overlapping with the next widget.
    _ = use_frame();

    view!()
}