Skip to content

Commit

Permalink
fix out of date component name in Mutations & Updates
Browse files Browse the repository at this point in the history
Reviewed By: evanyeung

Differential Revision: D61504233

fbshipit-source-id: 096a28c6eba56058a2b588073496e453f0756ba4
  • Loading branch information
lynnshaoyu authored and facebook-github-bot committed Aug 23, 2024
1 parent 49c596e commit e492d79
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions website/docs/tutorial/mutations-updates.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default function Story({story}: Props) {
}
```

Now let’s take a look at `StoryLikeButton.js`. Currently, it is a button that doesn’t do anything, along with a like count.
Now let’s take a look at `StoryLikeButton.tsx`. Currently, it is a button that doesn’t do anything, along with a like count.

![Like button](/img/docs/tutorial/mutations-like-button.png)

Expand Down Expand Up @@ -447,7 +447,7 @@ We should now see a composer at the top of the comments section:

![Comments composer screenshot](/img/docs/tutorial/mutations-comments-composer-screenshot.png)

Now take a look inside `StoryCommentsComposer.js`:
Now take a look inside `StoryCommentsComposer.tsx`:

```
function StoryCommentsComposer({story}) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default function Story({story}: Props) {
}
```

Now let’s take a look at `StoryLikeButton.js`. Currently, it is a button that doesn’t do anything, along with a like count.
Now let’s take a look at `StoryLikeButton.tsx`. Currently, it is a button that doesn’t do anything, along with a like count.

![Like button](/img/docs/tutorial/mutations-like-button.png)

Expand Down Expand Up @@ -447,7 +447,7 @@ We should now see a composer at the top of the comments section:

![Comments composer screenshot](/img/docs/tutorial/mutations-comments-composer-screenshot.png)

Now take a look inside `StoryCommentsComposer.js`:
Now take a look inside `StoryCommentsComposer.tsx`:

```
function StoryCommentsComposer({story}) {
Expand Down

0 comments on commit e492d79

Please sign in to comment.