1
0
Fork 0
tera-wallet/src/pages/my/components/account-header.tsx

25 lines
486 B
TypeScript

import { AtList, AtListItem } from "taro-ui";
const AccountHeader = () => (
<AtList hasBorder={false}>
<AtListItem
hasBorder={false}
title='创建/绑定私钥'
iconInfo={{
size: 20,
color: 'red',
value: 'lock',
}} />
<AtListItem
hasBorder={false}
title='创建账户'
iconInfo={{
size: 20,
color: 'green',
value: 'credit-card',
}} />
</AtList>
)
export default AccountHeader