File size: 797 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import React, { Component } from 'react'

export default class Default extends Component {
    render() {
        console.log(this.props);
        return (
            <div className="container">
                <div className="row">
                    <div className="col-10 mx-auto text-center text-title">
                        <h1>error</h1>
                        <h1 className="display-3">404</h1>
                        <h2>page not found</h2>
                        <h3>the requested URL 
                            <span className="text-danger">
                              {this.props.location.pathname}
                            </span>{""}
                            was not found</h3>
                    </div>
                </div>
            </div>
        )
    }
}