Skip to content

Commit

Permalink
chore(): merge
Browse files Browse the repository at this point in the history
  • Loading branch information
jgw96 committed Nov 14, 2017
2 parents 38d894e + ee62444 commit 5208af3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs-md/addons/stencil-router.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ You may be familiar with the concept of URL params from [React Router](https://r
The key part in this route is the `:pageNum` syntax. This means that we can now pass data to that route and it will be accessible through the `pageNum` variable. Below is an example of how we would pass data to this route:

```
<stencil-route-link url=`/show/${someData}` />
<stencil-route-link url={`/show/${someData}`} />
```

Now lets go over how to access this data from the `show-page` component we are routing too.
Expand Down
2 changes: 1 addition & 1 deletion src/components/demos-page/demos-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class DemosPage {
title: 'Stenciljs.com',
description: 'Yep, this site is also built with Stencil!',
url: 'https://stenciljs.com/',
source: 'https://stenciljs.com/',
source: 'https://github.com/ionic-team/stencil-site',
},
{
title: 'IonicHN',
Expand Down

0 comments on commit 5208af3

Please sign in to comment.