Wannika123
@Wannika123All solutions
- Submitted 4 months ago
Try NextJS (Very basic NextJS app)
- HTML
- CSS
- JS
Please share any good resources about NextJS.
- Submitted 6 months ago
Vite, React, TypeScript
- HTML
- CSS
- JS
- API
Any comment on TypeScript would be really helpful. This is my first time using it.
- Submitted 7 months ago
Another React app
- HTML
- CSS
- JS
For 'drag and drop' in React, what tool do you use?
I use SortableJS. And the problem that I found is that the list state to be displayed seems to have to be displayed (in
render()
) in that same component (I've tried to pass the list to child component, but when it re-renders, the list order went back to the initial order), so I have to cram everything in one component, and that seems to be contrary to React paradigm. - Submitted 7 months ago
React controlled input form
- HTML
- CSS
- JS
Any recommendation about the best practice for something of this kind would be appreciated.
- Submitted 8 months ago
Practice using API.
- HTML
- CSS
- JS
- API
When fetching the data, what is the difference between:
try { ... } catch { ... }
and
fetch(...) .then(...) .then(...) .catch(...)
And which situation to use it?
P.S. As the advice #117 is no longer the same as in the design file, I made it generate random quote when loaded. And I think that's how it's supposed to be.
- Submitted 8 months ago
At last, React calculator...
- HTML
- CSS
- JS
If anyone find any mistakes in calculator functioning or anything else, please let me know.