import { useAppSelector } from "$/lib/hooks"; import { getCurrentAccount } from "$/lib/store/selectors"; export default function HomeTimeline() { const account = useAppSelector(getCurrentAccount); return ( <> ); }