1
0
mirror of https://github.com/trambarhq/relaks-wordpress-example.git synced 2025-09-02 12:42:38 +02:00

Fixed two markdown links

This commit is contained in:
itstimetogoleft
2019-02-20 09:40:11 -08:00
committed by GitHub
parent ad85a154cf
commit 7165f4a5a1

View File

@@ -558,7 +558,7 @@ The first ten posts are always fetched so the visitor sees something immediately
### WelcomePage
`WelcomePage` (welcome-page.jsx)[https://github.com/trambarhq/relaks-wordpress-example/blob/master/src/pages/welcome-page.jsx] is an asynchronous component. Its `renderAsync()` method fetches a list of posts and passes them to `WelcomePageSync` for actual rendering of the user interface:
`WelcomePage` [welcome-page.jsx](https://github.com/trambarhq/relaks-wordpress-example/blob/master/src/pages/welcome-page.jsx) is an asynchronous component. Its `renderAsync()` method fetches a list of posts and passes them to `WelcomePageSync` for actual rendering of the user interface:
```javascript
async renderAsync(meanwhile) {
@@ -587,7 +587,7 @@ render() {
### PostList
The render method of `PostList` (post-list.jsx)[https://github.com/trambarhq/relaks-wordpress-example/blob/master/src/widgets/post-list.jsx] doesn't do anything special:
The render method of `PostList` [post-list.jsx](https://github.com/trambarhq/relaks-wordpress-example/blob/master/src/widgets/post-list.jsx) doesn't do anything special:
```javascript
render() {