Skip to content
This repository has been archived by the owner on Jun 14, 2024. It is now read-only.

Latest commit

 

History

History
23 lines (15 loc) · 492 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 492 Bytes

Summary

Block Explorer user interface.

Accepts "blocks" array generated by @appliedblockchain/simple-block-explorer

Usage

Example react component:

import React from 'react'
import BlockExplorer from '@appliedblockchain/block-explorer'

const BlockExplorerDemo = props => 
  <BlockExplorer
    blocks={props.blocks}
    height={window.innerHeight}
  />

export default BlockExplorerDemo