Files
nym/wallet-web/pages/undelegateStake.tsx
2021-07-27 16:44:11 +01:00

23 lines
502 B
TypeScript

import React from 'react'
import { Layout, NymCard } from '../components'
import MainNav from '../components/MainNav'
import NodeUndelegation from '../components/undelegate/NodeUndelegation'
const UndelegateStake = () => {
return (
<>
<MainNav />
<Layout>
<NymCard
title="Undelegate"
subheader="Undelegate from a Mixnode or Gateway"
>
<NodeUndelegation />
</NymCard>
</Layout>
</>
)
}
export default UndelegateStake