import React from 'react' import { Box } from '@chakra-ui/react' interface IPoolItemProps { pool: any } const PoolItem: React.FunctionComponent = (props) => { const { pool } = props const { time, apr, apy, total, status } = pool return ( hi ) } export default PoolItem