Añade composición de páginas basada en componentes

This commit is contained in:
Manuel Cillero 2022-02-13 20:11:33 +01:00
parent 0e3300dc90
commit 24e773c17b
30 changed files with 895 additions and 31 deletions

View file

@ -0,0 +1,9 @@
use crate::prelude::*;
pub struct MinimalTheme;
impl Theme for MinimalTheme {
fn name(&self) -> &str {
"Minimal"
}
}

1
src/base/theme/mod.rs Normal file
View file

@ -0,0 +1 @@
pub mod minimal;