@use crate::{ui::ButtonKind, State}; @use super::{layout_html, text_area_html, text_input_html, button_html}; @(state: &State) @:layout_html(state, "Collection", None, {}, {

Create Collection

@:text_input_html("title", Some("Title"), None, false) @:text_area_html("description", Some("Description"), None, false)
@:button_html("Create Collection", ButtonKind::Submit)
})