import ContributionPage from './ContributionPage' import LeadPage from './LeadPage' import RedeemPage from './RedeemPage' import Notifications from '../components/Notification' import NavBarBeta from '../components/NavBarBeta' import usePool from '../hooks/usePool' const Index = () => { const { startIdo, endIdo } = usePool() return (
{startIdo?.isAfter() && } {startIdo?.isBefore() && endIdo?.isAfter() && } {endIdo?.isBefore() && }
) } export default Index