Problem or opportunity
Today isn't shown whats menu is selected.
Proposal
Add active state to show what is selected menu:
const [active, setActive] = useState('home')
<li className={active === 'home' ? 'active' : ''} onClick={() => setActive('home')}>
Home
</li>
Alternatives considered
Nothing.
Expected impact
Better UI.
Problem or opportunity
Today isn't shown whats menu is selected.
Proposal
Add active state to show what is selected menu:
Alternatives considered
Nothing.
Expected impact
Better UI.