15 lines
212 B
HTML
15 lines
212 B
HTML
@use super::base_html;
|
|
@use super::components::shift_button_html;
|
|
@use cm_lib::models::Shift;
|
|
|
|
@(open_shift: Option<Shift>)
|
|
|
|
@:base_html({
|
|
|
|
<main>
|
|
<div>
|
|
@:shift_button_html(open_shift)
|
|
</div>
|
|
</main>
|
|
|
|
})
|