forked from RustLangES/RustLangES.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.rs
27 lines (26 loc) · 756 Bytes
/
mod.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
mod aprende;
mod button_link;
mod cards;
mod community_projects;
mod footer;
mod head_information;
mod header;
mod hero;
mod icons;
mod other_communities;
mod our_communities;
mod slogan_button;
pub use aprende::{Books, HeaderAprende, Roadmap, Youtube};
pub use button_link::ButtonLink;
pub use cards::{CardTitle, CommunityCard, ContributorCard, ProjectCard};
pub use community_projects::CommunityProjects;
pub use footer::Footer;
pub use head_information::HeadInformation;
pub use header::Header;
pub use hero::Hero;
pub use icons::{
DiscordIcon, GithubIcon, LinkedinIcon, LocationIcon, NextIcon, TelegramIcon, TwitterIcon,
};
pub use other_communities::OtherCommunities;
pub use our_communities::OurCommunities;
pub use slogan_button::SloganButton;