Añade composición de páginas basada en componentes
This commit is contained in:
parent
0e3300dc90
commit
24e773c17b
30 changed files with 895 additions and 31 deletions
9
src/base/theme/minimal/mod.rs
Normal file
9
src/base/theme/minimal/mod.rs
Normal 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
1
src/base/theme/mod.rs
Normal file
|
|
@ -0,0 +1 @@
|
|||
pub mod minimal;
|
||||
Loading…
Add table
Add a link
Reference in a new issue