docs: finalize initial draft

This commit is contained in:
Corbin Crutchley
2023-12-18 03:17:37 -08:00
parent 5e1d2a43bc
commit 2ba14900e3
2 changed files with 70 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ function App() {
{Array.from({ length: howManyInstances }).map((_, i) => (
<div key={i}>
<ErrorBoundary key={counter}>
<ThrowAnErrorIfEven key={i} number={counter} instance={i} />
<ThrowAnErrorIfEven number={counter} instance={i} />
</ErrorBoundary>
</div>
))}