ctrl-alt-del-world/midway

View on GitHub
web/src/templates/404.tsx

Summary

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

const browser = typeof window !== "undefined" && window

const NotFoundPage = () => {
  return (
    browser && (
      <div className='x'>
        Not Found
      </div>
    )
  )
}

export default NotFoundPage