Skip to content

Commit 9ef5e0f

Browse files
committed
cambia imports
1 parent 8be0d66 commit 9ef5e0f

11 files changed

+28
-15
lines changed

src/app.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ use leptos_meta::*;
33
use leptos_router::*;
44

55
use crate::{
6-
components::{footer::Footer, header::Header},
7-
pages::{contributors::Contributors, index::Index, Communidad::Communidad},
6+
components::{Footer, Header},
7+
pages::{Contributors, Index, Communidad},
88
};
99

1010
#[component]

src/components/cards/mod.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
pub mod card_title;
2+
pub use card_title::{*};
23
pub mod community_card;
4+
pub use community_card::{*};
35
pub mod contributor_card;
6+
pub use contributor_card::{*};
47
pub mod project_card;
8+
pub use project_card::{*};

src/components/community_projects.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use leptos::*;
22

3-
use crate::{components::cards::project_card::ProjectCard, extras::COMUNITY_PROJECTS};
3+
use crate::{components::ProjectCard, extras::COMUNITY_PROJECTS};
44

55
#[component]
66
pub fn CommunityProjects(#[prop(default = false)] main: bool) -> impl IntoView {

src/components/header.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use leptos::*;
22
use leptos_router::*;
33

4-
use crate::components::button_link::ButtonLink;
4+
use crate::components::ButtonLink;
55

66
#[component]
77
pub fn Header() -> impl IntoView {

src/components/hero.rs

-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ pub fn Hero() -> impl IntoView {
5050
</span>
5151
</h1>
5252
<div class="flex items-center justify-center lg:justify-start group"
53-
5453
on:click=click_handler
5554
>
5655
<button

src/components/mod.rs

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
pub mod button_link;
1+
mod button_link;
2+
pub use button_link::{*};
23
pub mod cards;
4+
pub use cards::{*};
35
pub mod community_projects;
4-
pub mod dummy_component;
6+
pub use community_projects::{*};
7+
mod dummy_component;
8+
pub use dummy_component::{*};
59
pub mod footer;
10+
pub use footer::{*};
611
pub mod header;
12+
pub use header::{*};
713
pub mod hero;
14+
pub use hero::{*};
815
pub mod icons;
16+
pub use icons::{*};
917
pub mod other_communities;
18+
pub use other_communities::{*};
1019
pub mod our_communities;
20+
pub use our_communities::{*};

src/components/other_communities.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use leptos::*;
22

3-
use crate::{components::cards::community_card::CommunityCard, extras::OTHER_COMUNITIES};
3+
use crate::{components::CommunityCard, extras::OTHER_COMUNITIES};
44

55
#[component]
66
pub fn OtherCommunities(#[prop(default = false)] main: bool) -> impl IntoView {

src/pages/Communidad.rs src/pages/communidad.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use leptos::*;
22

3-
use crate::components::{community_projects::CommunityProjects, other_communities::OtherCommunities};
3+
use crate::components::{CommunityProjects, OtherCommunities};
44

55
#[component]
66
pub fn Communidad() -> impl IntoView {

src/pages/contributors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use leptos::{error::Result, *};
22
use serde::{Deserialize, Serialize};
33

4-
use crate::components::cards::contributor_card::ContributorCard;
4+
use crate::components::ContributorCard;
55

66
#[derive(Clone, PartialEq, Eq, Serialize, Deserialize)]
77
pub struct Contributor {

src/pages/index.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
use leptos::*;
22

3-
use crate::components::{
4-
community_projects::CommunityProjects, hero::Hero, other_communities::OtherCommunities,
5-
our_communities::OurCommunities,
6-
};
3+
use crate::components::{CommunityProjects, Hero, OtherCommunities, OurCommunities};
74

85
#[component]
96
pub fn Index() -> impl IntoView {

src/pages/mod.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
pub mod contributors;
2-
pub mod Communidad;
2+
pub use contributors::*;
3+
pub mod communidad;
4+
pub use communidad::*;
35
pub mod index;
6+
pub use index::*;

0 commit comments

Comments
 (0)