import { Profile } from 'components/ProfileSection' import { useAppSelector } from 'hooks' import { Outlet } from 'react-router-dom' export const FeedLayout = () => { const userState = useAppSelector((state) => state.user) return (
{userState.auth && userState.user?.pubkey && (
)}
) }