You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issues:
Input not linked to state: The input checkbox should toggle the dark mode, but it's not currently linked to is DarkMode.
Missing event handler for the checkbox: You need to handle the onChange event to call toggleDarkMode and pass the checked state of the checkbox.
Unnecessary value attribute: The value attribute on the input is unnecessary in this context.
UI feedback: You might want to use is DarkMode to conditionally render a different UI (e.g., applying a dark theme class).
0 commit comments