@@ -54,10 +83,14 @@ export function App() {
+
+
+
{correct ? "Correct" : "Try again!"}
+ {solution !== null ? solution : <>>}
)
}
diff --git a/src/solution.css b/src/solution.css
new file mode 100644
index 0000000..001b7d9
--- /dev/null
+++ b/src/solution.css
@@ -0,0 +1,6 @@
+.solution {
+ padding: 16px;
+ border-radius: 12px;
+ background: white;
+ color: black;
+}
diff --git a/src/solution.tsx b/src/solution.tsx
new file mode 100644
index 0000000..ce64509
--- /dev/null
+++ b/src/solution.tsx
@@ -0,0 +1,29 @@
+import './solution.css'
+
+type SolutionRow = [Number, Number, Number, Number]
+export type SolutionKey = Array