mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 14:37:21 +01:00
11 lines
220 B
JavaScript
11 lines
220 B
JavaScript
import { h } from 'preact';
|
|
|
|
export default function (props) {
|
|
return (
|
|
<div>
|
|
<h2>No hope!</h2>
|
|
<p>Not sure what you desire, but look for somewhere else...</p>
|
|
</div>
|
|
);
|
|
}
|