File size: 322 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from 'react'
import NotFoundImg from '../Assets/404.svg';

const NotFound = () => {
    return (
        <div className="d-flex justify-content-center align-items-center">
        <img src={`${NotFoundImg}`} alt="" style={{height: '80vh', padding: '2rem 0 0 0'}}/>
    </div>
    )
}

export default NotFound