From 3a8aac4630bbe271a5fd7f241d49e5f1b8766c58 Mon Sep 17 00:00:00 2001 From: Henry-Cat <57220048+Henry-Cat@users.noreply.github.com> Date: Mon, 4 Sep 2023 17:40:30 -0400 Subject: [PATCH 1/5] Field Notes basic setup --- app/components/FieldNotes.tsx | 32 ++++++++++++++++++++++++++++++++ app/components/InfoPanel.tsx | 6 +++++- 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 app/components/FieldNotes.tsx diff --git a/app/components/FieldNotes.tsx b/app/components/FieldNotes.tsx new file mode 100644 index 00000000..ae464d99 --- /dev/null +++ b/app/components/FieldNotes.tsx @@ -0,0 +1,32 @@ +import { Body } from "./Primitives/Body"; +import { useState } from "react"; + +export function FieldNotes() { + + const [value, setValue] = useState(""); + + function handleChange(event: React.ChangeEvent) { + setValue(event.target.value); + } + + return ( +
+ Test +