1
0
Fork 0
tera-wallet/src/pages/index/components/base-info.tsx

14 lines
468 B
TypeScript

import { AtCard } from "taro-ui";
import { View } from "@tarojs/components";
export default ({ info }) => (
<AtCard className='base-info' title='基本信息'>
<View>: {info.version}</View>
<View>: {info.block}</View>
<View>: {info.supply}</View>
<View> : {info.percent}</View>
<View>: {info.lastNumber}</View>
<View> : {info.lastMiner} {info.lastName}</View>
</AtCard>
)