dioxus-bulma 0.1.0

Bulma CSS components for Dioxus
Documentation
// Layout Components
pub mod container;
pub mod columns;
pub mod section;
pub mod hero;
pub mod level;
pub mod media;
pub mod tile;

// Elements
pub mod button;
pub mod content;
pub mod delete;
pub mod icon;
pub mod image;
pub mod notification;
pub mod progress;
pub mod table;
pub mod tag;
pub mod title;

// Form Components
pub mod field;
pub mod control;
pub mod input;
pub mod textarea;
pub mod select;
pub mod checkbox;
pub mod radio;
pub mod file;

// Components
pub mod breadcrumb;
pub mod card;
pub mod dropdown;
pub mod menu;
pub mod message;
pub mod modal;
pub mod navbar;
pub mod pagination;
pub mod panel;
pub mod tabs;

// Re-export all implemented components

// Layout Components
pub use container::*;
pub use columns::*;
pub use section::*;
pub use hero::*;
pub use level::*;
pub use media::*;
pub use tile::*;

// Elements
pub use button::*;
pub use content::*;
pub use delete::*;
pub use icon::*;
pub use image::*;
pub use notification::*;
pub use progress::*;
pub use table::*;
pub use tag::*;
pub use title::*;

// Form Components
pub use field::*;
pub use control::*;
pub use input::*;
pub use textarea::*;
pub use select::*;
pub use checkbox::*;
pub use radio::*;
pub use file::*;

// Components
pub use breadcrumb::*;
pub use card::*;
pub use dropdown::*;
pub use menu::*;
pub use message::*;
pub use modal::*;
pub use navbar::*;
pub use pagination::*;
pub use panel::*;
pub use tabs::*;