Skip to content

Commit

Permalink
Minor format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aquarhead committed Aug 12, 2024
1 parent 668c157 commit f52f1a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ struct LinkProps {
#[component]
fn Link<G: Html>(props: LinkProps) -> View<G> {
view! {
a(class=props.class, target="_blank", href=props.href) {
(props.text)
}
a(class=props.class, target="_blank", href=props.href) {
(props.text)
}
}
}

Expand Down

0 comments on commit f52f1a2

Please sign in to comment.