// Copyright 2015-2018 Parity Technologies (UK) Ltd. // This file is part of Parity. // // SPDX-License-Identifier: MIT import React, { Component } from 'react'; import { inject, observer } from 'mobx-react'; import { Link } from 'react-router-dom'; import CreateAccountContainer from '../CreateAccountContainer'; @inject('createAccountStore') @observer class AccountCopyPhrase extends Component { render () { const { createAccountStore: { phrase }, location: { pathname } } = this.props; const currentStep = pathname.slice(-1); return (

Please write your secret phrase on a piece of paper:

{phrase}
); } } export default AccountCopyPhrase;