diff options
Diffstat (limited to 'bskyembed/src/app.tsx')
-rw-r--r-- | bskyembed/src/app.tsx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/bskyembed/src/app.tsx b/bskyembed/src/app.tsx new file mode 100644 index 000000000..4fba80d59 --- /dev/null +++ b/bskyembed/src/app.tsx @@ -0,0 +1,18 @@ +import {Fragment, h} from 'preact' + +export function App() { + return ( + <> + <p>Hello Vite + Preact!</p> + <p> + <a + className="link" + href="https://preactjs.com/" + target="_blank" + rel="noopener noreferrer"> + Learn Preact + </a> + </p> + </> + ) +} |