import { ChainState } from '@ethersphere/bee-js' import { useContext, useEffect, useState } from 'react' import { Context } from '../providers/Settings' import ExpandableListItem from './ExpandableListItem' export function ChainSync() { const { beeApi } = useContext(Context) const [chainState, setChainState] = useState(null) useEffect(() => { const interval = setInterval(() => { if (!beeApi) { return } beeApi.getChainState().then(setChainState).catch(console.error) // eslint-disable-line }, 3_000) return () => clearInterval(interval) }) return ( ) }