github.com/shyftnetwork/go-empyrean@v1.8.3-0.20191127201940-fbfca9338f04/shyftBlockExplorerUI/src/components/table/blocks/errorMessage.js (about) 1 import React from 'react'; 2 import Jumbotron from 'react-bootstrap/lib/Jumbotron'; 3 4 const errorMessage = (props) => { 5 return ( 6 <Jumbotron> 7 <h1>Blocks Status</h1> 8 <p> 9 Blocks seem to be empty for this request. 10 </p> 11 </Jumbotron> 12 ) 13 } 14 15 export default errorMessage;