ElectronicBabylonianLiterature/ebl-frontend

View on GitHub
src/NotFoundPage.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import React from 'react'

const NotFoundPage: React.FC = () => (
  <div style={{ textAlign: 'center', marginTop: '50px' }}>
    <h1>404 - Not Found</h1>
    <p>The page you are looking for does not exist.</p>
  </div>
)

export default NotFoundPage