ooade/PreactSimpleStarter

View on GitHub
src/components/404.js

Summary

Maintainability
A
0 mins
Test Coverage
import { h } from 'preact';

export default() => {
  return (
    <div className='error' style={{ textAlign: 'center' }}>
      <b> 404 </b> | Oops! Page Not Found
    </div>
  );
};