Skip to content

Commit 499cf2d

Browse files
committed
fix lint
1 parent cf44edf commit 499cf2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/react/Scoreboard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ type ScoreboardProps = {
1313
style?: React.CSSProperties
1414
}
1515

16-
const ScoreboardBase = function Scoreboard ({ title, items, open, style }: ScoreboardProps) {
17-
16+
const ScoreboardBase = ({ title, items, open, style }: ScoreboardProps) => {
1817
if (!open) return null
18+
1919
return (
2020
<div className='scoreboard-container' style={style}>
2121
<div className='scoreboard-title'>

0 commit comments

Comments
 (0)