// Copyright 2015-2018 Parity Technologies (UK) Ltd. // This file is part of Parity. // // SPDX-License-Identifier: MIT import React, { Component } from 'react'; import { FormField, Header } from 'light-ui'; import { inject, observer } from 'mobx-react'; import Health from '../Health'; @inject('onboardingStore') @observer class Onboarding extends Component { handleFirstRun = () => { // Not first run anymore after clicking Accept this.props.onboardingStore.setIsFirstRun(false); }; render () { return (
Terms of Use} />
} label="Please read carefully Fether Wallet's Terms of Use" />
); } } export default Onboarding;