Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
brillout committed Feb 14, 2024
1 parent 02f529e commit 95db599
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions examples/streaming/components/Counter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import React, { useState } from 'react'
export { Counter }

function Counter() {
const [count, setCount] = useState(0)
return (
<button type="button" onClick={() => setCount((count) => count + 1)}>
Counter {count}
</button>
)
const [count, setCount] = useState(0)
return (
<button type="button" onClick={() => setCount((count) => count + 1)}>
Counter {count}
</button>
)
}
2 changes: 1 addition & 1 deletion examples/streaming/pages/index/+Page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ function MovieList() {
export type Movie = {
title: string
release_date: string
}
}

0 comments on commit 95db599

Please sign in to comment.