Skip to content

Commit 3efc6be

Browse files
committed
fix internal links
1 parent 565fa98 commit 3efc6be

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

creating-apps-with-components/best-practices.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ model/
1414
page/component.json
1515
```
1616

17-
From `view/user`, you should NOT do `require('user')`. You should prefix every component in `model/` with `model-` and do `require('model-user')` or use [nested locals](locals.md#Nested structure).
17+
From `view/user`, you should NOT do `require('user')`. You should prefix every component in `model/` with `model-` and do `require('model-user')` or use [Nested Structure](../creating-components/locals.md#Nested Structure).
1818

1919
# Pin dependencies
2020

File renamed without changes.

creating-apps-with-components/locals.md creating-components/locals.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Local components don't need a `.name` field, they just use its folder name. You
1818
"locals": ["foo/bar", "/qux/bar"]
1919
```
2020

21-
Another way to structure your component is to use multiple `.paths` values in your root component. See [Components structure](best-practices.md#Components structure).
21+
Another way to structure your component is to use multiple `.paths` values in your root component. See [Components Structure](../creating-apps-with-components/best-practices.md#Components structure).
2222

2323
# Require Locals
2424

0 commit comments

Comments
 (0)