From 21767ba6e9f368c786a33281ca96bf40c2f6ce3c Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 14 Mar 2024 23:00:32 -0400 Subject: [PATCH] Suggestions and requests for explanatinons Just some feedback in place from a new user --- docs/guides/typescript.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/guides/typescript.md b/docs/guides/typescript.md index 6c2a10954..1923b1831 100644 --- a/docs/guides/typescript.md +++ b/docs/guides/typescript.md @@ -48,6 +48,19 @@ export const MyApp: React.FC<{}> = () => { }; ``` +#### Just some feedback from a new user: +The withFormik() section doesn't make sense to me +- where it would go +- how it's connected to the previous script +- what it should be named +- is it a component? +- is it a function that should just go in App.tsx? +- There's no explanation so I'm completely lost how to link the validation with the typescript form +- it would be helpful to see a working example of these tied together, maybe a codepen or the like + +Thanks + + #### `withFormik()` ```tsx