import { useEffect } from 'react' import { useDispatch } from 'react-redux' import Link from 'next/link' import { startClock } from '../actions' import Examples from '../components/examples' const Index = () => { const dispatch = useDispatch() useEffect(() => { dispatch(startClock()) }, [dispatch]) return ( <> Click to see current Redux State ) } export default Index