// Copyright 2017-2020 @polkadot/react-components authors & contributors // This software may be modified and distributed under the terms // of the Apache-2.0 license. See the LICENSE file for details. import { QueueProps, QueueStatus, QueueTx } from './types'; import React from 'react'; const defaultState: Partial = { stqueue: [] as QueueStatus[], txqueue: [] as QueueTx[] }; const StatusContext: React.Context = React.createContext(defaultState as QueueProps); const QueueConsumer: React.Consumer = StatusContext.Consumer; const QueueProvider: React.Provider = StatusContext.Provider; export default StatusContext; export { QueueConsumer, QueueProvider };