TypeScriptFullStackShell
TypeScriptFullStackShell copied to clipboard
Setting up a web application for full-stack TypeScript development
Results
1
TypeScriptFullStackShell issues
Sort by
recently updated
recently updated
newest added
In `DemoController.ts` you return json with the key **message**: ```js return res.status(OK).json({ message: DemoController.SUCCESS_MSG + name, }); ``` Therefore you should access response.**message** in `App.tsx`: ```js let response = await...