Files
old-psihologija/client/src/scenes/NotFound/index.js

10 lines
153 B
JavaScript
Raw Normal View History

2019-05-23 19:19:54 +02:00
import React from 'react';
export default function NotFound () {
return (
<div>
<h1>Page not found</h1>
</div>
);
}