Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
remix-run-bot committed Sep 14, 2022
1 parent 7c39c44 commit 6db1537
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/start/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,9 @@ function Issue() {
{/* Await manages the deferred data (promise) */}
<Await resolve={history}>
{/* this calls back when the data is resolved */}
{(resolvedHistory) => <IssueHistory history={resolvedHistory} />}
{(resolvedHistory) => (
<IssueHistory history={resolvedHistory} />
)}
</Await>
</Suspense>

Expand Down

0 comments on commit 6db1537

Please sign in to comment.