wasm-css 0.2.0

Ergonomic WASM CSS Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Authors: Robert Lopez

pub mod effect;
pub mod from_css;
pub mod to_css;

#[cfg(test)]
mod tests;

use effect::Effect;
use std::collections::BTreeMap;

#[derive(Debug, Default, Clone, PartialEq)]
pub struct Components {
    pub(crate) fields: BTreeMap<String, String>,
    pub(crate) effects: Vec<Effect>,
}