From 2ed9cc13c82375ce4eb46f52f60023298e7eed9c Mon Sep 17 00:00:00 2001 From: Adam Burgess Date: Mon, 10 May 2021 14:46:57 +1000 Subject: [PATCH] deps --- index.html | 11 +++++++++++ index.tsx | 26 ++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 index.html create mode 100644 index.tsx 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);