Skip to content
This repository has been archived by the owner on Dec 24, 2022. It is now read-only.

Commit

Permalink
Added preact object viewer using JSX GH-3
Browse files Browse the repository at this point in the history
Much easier to do this using JSX than svelte

Signed-off-by: Brian Evans <[email protected]>
  • Loading branch information
mrbrianevans committed Nov 6, 2021
1 parent 10837b0 commit c00e8ed
Show file tree
Hide file tree
Showing 12 changed files with 2,358 additions and 0 deletions.
5 changes: 5 additions & 0 deletions preact-object-viewer/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
.DS_Store
dist
dist-ssr
*.local
13 changes: 13 additions & 0 deletions preact-object-viewer/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit c00e8ed

Please sign in to comment.