All Questions
2 questions
-1
votes
1
answer
24
views
How do I distinguish the difference in naming and file structure between components and mobile components in React? [closed]
Here is my example structure:
.
├── App.jsx
├── index.js
└── src
└── components
├── Button.jsx
└── Header
└── Header.jsx
Question:
...
0
votes
1
answer
44
views
Repetitive then/catch method on Javascript [closed]
I have this function and looks ugly because there are a lot of "catch" doing the same. Any idea how to make it better?
...