Send.js 281 B
Newer Older
Amaury Martiny's avatar
Amaury Martiny committed
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
// This file is part of Parity.

Amaury Martiny's avatar
Amaury Martiny committed
// SPDX-License-Identifier: MIT
import React, { Component } from 'react';
class Send extends Component {
Amaury Martiny's avatar
Amaury Martiny committed
  render () {
    return <div>This is the send page.</div>;
  }
}

export default Send;