21 lines
629 B
TypeScript
21 lines
629 B
TypeScript
import React from 'react'
|
|
import useGetPublicIfoV1Data from 'views/Ifos/hooks/v1/useGetPublicIfoData'
|
|
import useGetWalletIfoV1Data from 'views/Ifos/hooks/v1/useGetWalletIfoData'
|
|
import { Ifo } from 'config/constants/types'
|
|
import IfoFoldableCard from './IfoFoldableCard'
|
|
|
|
interface Props {
|
|
ifo: Ifo
|
|
}
|
|
|
|
const IfoCardV1Data: React.FC<Props> = ({ ifo }) => {
|
|
const publicIfoData = useGetPublicIfoV1Data(ifo)
|
|
const walletIfoData = useGetWalletIfoV1Data(ifo)
|
|
|
|
return (
|
|
<IfoFoldableCard ifo={ifo} publicIfoData={publicIfoData} walletIfoData={walletIfoData} isInitiallyVisible={false} />
|
|
)
|
|
}
|
|
|
|
export default IfoCardV1Data
|