From 25fcd7e4d8c37cd4627b9a4fa631e4c94911b48c Mon Sep 17 00:00:00 2001 From: 03hoho03 Date: Sun, 7 Apr 2024 23:54:49 +0900 Subject: [PATCH] [#32] textarea recoil value --- app/_store/ibulsin/textarea.ts | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 app/_store/ibulsin/textarea.ts diff --git a/app/_store/ibulsin/textarea.ts b/app/_store/ibulsin/textarea.ts new file mode 100644 index 0000000..e0a59d9 --- /dev/null +++ b/app/_store/ibulsin/textarea.ts @@ -0,0 +1,31 @@ +import { atom } from 'recoil' + +export const outlineTextareaAtom = atom({ + key: 'outlineTextareaAtom', + default: '', +}) + +export const whyTextareaAtom = atom({ + key: 'whyTextareaAtom', + default: '', +}) + +export const marketResponseTextareaAtom = atom({ + key: 'marketResponseTextareaAtom', + default: '', +}) + +export const XYZTextareaAtom = atom({ + key: 'XYZTextareaAtom', + default: '', +}) + +export const xyzTextareaAtom = atom({ + key: 'xyzTextareaAtom', + default: '', +}) + +export const pretotypingTextareaAtom = atom({ + key: 'pretotypingTextareaAtom', + default: '', +})