IT Log

Record various IT issues and difficulties.

Tag: useState


  • Frontend-Backend Separation: How to Display the Username

    To display the username after separating frontend and backend, follow these steps: Store Username in State: Use React’s useState to manage the username state on the frontend. Fetch Username from Backend: Create an API endpoint (e.g., /api/users/me) that returns the logged-in user’s data. Use Axios or fetch to call this endpoint in a function, updating…