yew_components_library 0.1.0

A collection of yew components using the atomic component management system. Components are made in tailwindcss.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod header;
pub use header::Header;

mod footer;
pub use footer::Footer;

mod staff_card;
pub use staff_card::StaffCard;

mod client_review_card;
pub use client_review_card::ClientReviewCard;

mod contact_form;
pub use contact_form::ContactForm;