Skip to content

Commit

Permalink
Double the size
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuth committed Jun 28, 2024
1 parent 0db844b commit 21158f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function App() {
Source code
</a>
</div>
<ol className="grid grid-cols-[repeat(25,20px)]">
<ol className="grid grid-cols-[repeat(50,20px)]">
{state.values.map((value, i) => {
return (
<li key={i}>
Expand Down
2 changes: 1 addition & 1 deletion src/reducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {step} from './step';

export const initialState = {
playing: false,
values: new Array<number>(25 * 25).fill(0),
values: new Array<number>(50 * 50).fill(0),
};

type Action =
Expand Down

0 comments on commit 21158f3

Please sign in to comment.