mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 23:58:06 +01:00
fba17d77de
* Refactor and fix styling for first time flow. Remove seed phrase from persisted metamask state * Fix linting and tests * Fix translations, initialization notice routing * Fix drizzle tests * Fix e2e tests * Fix integration tests * Fix styling * Fix migration naming from 030 to 031 * Open extension in browser when user has not completed onboarding
15 lines
396 B
JavaScript
15 lines
396 B
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { Redirect, Route } from 'react-router-dom'
|
|
import { INITIALIZE_ROUTE } from '../../routes'
|
|
|
|
export default function Initialized (props) {
|
|
return props.completedOnboarding
|
|
? <Route { ...props } />
|
|
: <Redirect to={{ pathname: INITIALIZE_ROUTE }} />
|
|
}
|
|
|
|
Initialized.propTypes = {
|
|
completedOnboarding: PropTypes.bool,
|
|
}
|