mango-token-sale/pages/index.tsx

14 lines
277 B
TypeScript
Raw Normal View History

2021-04-25 08:03:30 -07:00
import Notifications from '../components/Notification'
2021-04-25 09:13:28 -07:00
import TopBar from '../components/TopBar'
2021-04-25 08:03:30 -07:00
const Index = () => {
return (
<div className={`bg-th-bkg-1 text-th-fgd-1 transition-all `}>
2021-04-25 09:13:28 -07:00
<TopBar />
2021-04-25 08:03:30 -07:00
<Notifications />
</div>
)
}
export default Index