How to persist connected wallet using redux and mesh

import { useEffect, useState } from “react”;
import { useDispatch } from “react-redux”;
import { CardanoWallet, useWallet} from “@meshsdk/react”;
import { useAddress } from ‘@meshsdk/react’;

const Header = () => {
const address = useAddress();
const { connected } = useWallet();

return (








);
};
export default Header;