Skip to content

Commit

Permalink
Merge branch 'master' of github.com:DioxusLabs/dioxus
Browse files Browse the repository at this point in the history
  • Loading branch information
jkelleyrtp committed Mar 10, 2022
2 parents 3f130d9 + a10e3ef commit 1653278
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/router/src/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
Before we start utilizing Dioxus Router, we need to initialize a Dioxus web application.

#### Required Tools
If you haven't already, make sure you install the [trunk](https://trunkrs.dev/) build tool and the rust ``wasm32-unknown-unknown`` target:
If you haven't already, make sure you install the [dioxus-cli](https://dioxuslabs.com/nightly/cli/) build tool and the rust ``wasm32-unknown-unknown`` target:
```
$ cargo install trunk
$ cargo install dioxus-cli
...
$ rustup target add wasm32-unkown-unknown
...
Expand Down Expand Up @@ -60,9 +60,9 @@ fn app(cx: Scope) -> Element {

Our project is now setup! To make sure everything is running correctly, in the root of your project run:
```
trunk serve
dioxus serve --platform web
```
Then head to [http://localhost:8080](http://localhost:8080) in your browser, and you should see ``Hello, wasm!`` on your screen.

#### Conclusion
We setup a new project with Dioxus and got everything running correctly. Next we'll create a small homepage and start our journey with Dioxus Router.
We setup a new project with Dioxus and got everything running correctly. Next we'll create a small homepage and start our journey with Dioxus Router.

0 comments on commit 1653278

Please sign in to comment.