wip
This commit is contained in:
parent
dac2f177f0
commit
03d6a56b12
1 changed files with 18 additions and 17 deletions
27
src/app.rs
27
src/app.rs
|
@ -13,6 +13,18 @@ impl Component for App {
|
|||
}
|
||||
|
||||
fn view(&self, _ctx: &Context<Self>) -> Html {
|
||||
let topografix = move || -> Html {
|
||||
html! { <a href="https://www.topografix.com/gpx.asp">{"GPX files"}</a> }
|
||||
};
|
||||
|
||||
let garmin = move || -> Html {
|
||||
html! {<a href="https://www.garmin.com">{"Garmin"}</a>}
|
||||
};
|
||||
|
||||
let strava = move || -> Html {
|
||||
html! {<a href="https://www.strava.com">{"Strava"}</a>}
|
||||
};
|
||||
|
||||
html! {
|
||||
<>
|
||||
<h1>
|
||||
|
@ -20,11 +32,7 @@ impl Component for App {
|
|||
</h1>
|
||||
|
||||
<p>
|
||||
{"This client-side tool is for merging "}
|
||||
<a href="https://www.topografix.com/gpx.asp">
|
||||
{"GPX files"}
|
||||
</a>
|
||||
{". "}
|
||||
{ "A client-side tool for merging "}{ topografix() }{ "." }
|
||||
</p>
|
||||
|
||||
<Loader />
|
||||
|
@ -33,14 +41,7 @@ impl Component for App {
|
|||
|
||||
<p>
|
||||
{ "Note, this has only been tested on GPX files produced by " }
|
||||
<a href="https://www.garmin.com">
|
||||
{"Garmin"}
|
||||
</a>
|
||||
{" and "}
|
||||
<a href="https://www.strava.com">
|
||||
{"Strava"}
|
||||
</a>
|
||||
{" - your mileage may vary."}
|
||||
{ garmin() }{ " and " }{ strava() }{ " - your mileage may vary." }
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
|
Loading…
Add table
Reference in a new issue