Guest User

Untitled

a guest
Sep 25th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. import React from 'react'
  2. import Img from '../../assets/images/round-error-symbol.svg'
  3.  
  4. const ErrorPage= () => {
  5. return (
  6. <div className='ErrorPageContent'>
  7. <img src={Img} alt=""/>
  8.  
  9. <p>OOPS! Something went wrong, please try again or <a href="#">report</a></p>
  10. <button className='ReportButton'>RELOAD</button>
  11. </div>
  12. )
  13. }
  14. export default ErrorPage
Add Comment
Please, Sign In to add comment