All files / nexshop-web-skeleton/src/component not-found.js

50% Statements 1/2
100% Branches 0/0
100% Functions 0/0
50% Lines 1/2
1 2 3 4 5 6 7 8 9 10 111x                    
import React, {Component} from 'react';
 
export default class NotFound extends Component {
    render() {
        return (
            <div>
                Oops! page not found!!
            </div>
        );
    }
}