Skip to content

Commit

Permalink
Introduce basic example
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Sep 24, 2024
1 parent 7c909e8 commit a79ba5a
Show file tree
Hide file tree
Showing 9 changed files with 3,845 additions and 0 deletions.
Empty file added examples/.gitkeep
Empty file.
2 changes: 2 additions & 0 deletions examples/profile/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
dist/
Empty file added examples/profile/.gitkeep
Empty file.
12 changes: 12 additions & 0 deletions examples/profile/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello Example</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
25 changes: 25 additions & 0 deletions examples/profile/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "example-profile",
"version": "0.0.0",
"private": true,
"dependencies": {
"@ensdomains/ensjs": "4.0.1-alpha.0",
"@ensdomains/ensjs-react": "^0.0.3",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@wagmi/chains": "^1.8.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"viem": "^1.21.4",
"vite": "^5.4.7",
"wagmi": "~1.3.11"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build"
},
"devDependencies": {
"typescript": "^5.6.2"
}
}
Loading

0 comments on commit a79ba5a

Please sign in to comment.