// features/counter/Counter.js import { useSelector, useDispatch } from 'react-redux'; import { increment, decrement, incrementByAmount } from './counterSlice'; function Counter() { // Lire l'état const count = useSelector(state => state.counter.value); // Obtenir la fonction dispatch const dispatch = useDispatch(); return (

{count}

); }