UNPKG

dg-npm-templates

Version:

Npx generator for react app dependency creation by digite

16 lines (12 loc) 477 B
import React from 'react'; function ErrorPageView () { const errorImgs = [ '', 'images/error/404_1.png', 'images/error/404_2.png', 'images/error/404_3.png', 'images/error/404_4.png', 'images/error/404_5.png', 'images/error/404_6.png', 'images/error/404_7.png' ]; return ( <img src={ errorImgs[ Math.floor( Math.random() * 7 ) + 1 ] } className='full_width full_height' alt='404 Error'></img> ) } export default ErrorPageView;