import React from "react"; import { useSelector, useDispatch } from "react-redux"; import { TOGGLE } from "./UiReducer"; const Toggle = () => { const ui = useSelector(state => state.ui); const dispatch = useDispatch(); return (