yew_custom_components/
lib.rs

1#![deny(missing_docs)]
2//! A collection of random Yeq function components
3//!
4//! The components are:
5//!
6//! * Table
7//! * Tabs
8//!
9//! The collection can be expanded as the need arises
10//! Underlying CSS is [Bootstrap](https://getbootstrap.com/docs/5.3/getting-started/introduction/), but we are trying to make this customizable if at all possible
11
12#[cfg(feature="table")]
13pub mod table;
14#[cfg(feature="tabs")]
15pub mod tabs;
16#[cfg(feature="pagination")]
17pub mod pagination;