// @flow
import * as React from 'react';
import Page from 'component/page';
import WalletBackup from 'component/walletBackup';

function BackupPage() {
  return (
    <Page>
      <WalletBackup />
    </Page>
  );
}

export default BackupPage;