Summary
- - NEVER use `useState` or `useEffect` directly in React Components.
- ALWAYS use custom hook in separated for that (e.g., `useBot`, `useBacktesting`). - NEVER combine multiple hooks or components in a single file, even if they are small.
- EVERY hook, component or Modal should have …