preact-in-es3
preact-in-es3 copied to clipboard
example looks broke
it looks like the CDN expects exports to be defined.

It seems like the html is missing, add this to make it work:
<!DOCTYPE html>
<html>
<head>
<title>Preact without Babel or JSX</title>
</head>
<body>
<script src="https://unpkg.com/preact"></script>
<script src="index.js"></script>
</body>
</html>