From 21158f3bade935b9f6a477ac62e9a49618702013 Mon Sep 17 00:00:00 2001 From: Andrew Huth Date: Fri, 28 Jun 2024 08:26:26 -0400 Subject: [PATCH] Double the size --- src/components/App.tsx | 2 +- src/reducer.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/App.tsx b/src/components/App.tsx index 04b6017..a4d0263 100644 --- a/src/components/App.tsx +++ b/src/components/App.tsx @@ -36,7 +36,7 @@ export default function App() { Source code -
    +
      {state.values.map((value, i) => { return (
    1. diff --git a/src/reducer.ts b/src/reducer.ts index fecde93..b802dcd 100644 --- a/src/reducer.ts +++ b/src/reducer.ts @@ -2,7 +2,7 @@ import {step} from './step'; export const initialState = { playing: false, - values: new Array(25 * 25).fill(0), + values: new Array(50 * 50).fill(0), }; type Action =