AccountContext.js 357 B
Newer Older
Axel Chalon's avatar
Axel Chalon committed
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
// This file is part of Parity.
//
// SPDX-License-Identifier: BSD-3-Clause

Axel Chalon's avatar
Axel Chalon committed

// react-router doesn't pass match params to child components
export const consumeAccount = withProps(({ match: { url } }) => ({
  accountAddress: /^\/?tokens\/([^/]+)/.exec(url)[1]
}));