Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
probablyangg committed Sep 25, 2024
1 parent 310b660 commit 33d7ace
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/modules/stats/Stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,18 @@ const BigNumber = ({ children }) => {
return <div style={{ fontSize: '64px' }}>{children}</div>
}

const BigText = ({children}) => {
return <div style={{fontSize: '24px'}}>{children}</div>
const BigText = ({ children }) => {
return <div style={{ fontSize: '24px' }}>{children}</div>
}

const StatSection = ({children}) => {
const StatSection = ({ children }) => {
return (
<div style={{
display: 'flex',
flexDirection: 'column',
alignItems: 'center'
}}>
<div
style={{
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
}}>
{children}
</div>
)
Expand Down

0 comments on commit 33d7ace

Please sign in to comment.