commit 2ed9cc13c82375ce4eb46f52f60023298e7eed9c Author: Adam Burgess Date: Mon May 10 14:46:57 2021 +1000 deps diff --git a/index.html b/index.html new file mode 100644 index 0000000..3bad5d4 --- /dev/null +++ b/index.html @@ -0,0 +1,11 @@ + + + + Adam + + + + + + + diff --git a/index.tsx b/index.tsx new file mode 100644 index 0000000..b377b34 --- /dev/null +++ b/index.tsx @@ -0,0 +1,26 @@ +import { render, Fragment, h } from 'preact' + +function App() { + return <> +
Hi, I'm Adam.
+
Here are some npm modules I've made:
+ +
And here are some sites:
+ +
Here's some other projects I've made:
+ + +} + +render(, document.body);