Skip to content

Commit

Permalink
chore: adds solid-js example app
Browse files Browse the repository at this point in the history
  • Loading branch information
thedanchez committed Feb 5, 2024
1 parent 440d74c commit c540eee
Show file tree
Hide file tree
Showing 17 changed files with 3,141 additions and 47 deletions.
15 changes: 15 additions & 0 deletions examples/solid-js/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="shortcut icon" type="image/ico" href="/src/assets/favicon.ico" />
<title>Solid App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script src="/src/index.tsx" type="module"></script>
</body>
</html>
28 changes: 28 additions & 0 deletions examples/solid-js/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "@fireproof-example/solid-js",
"version": "0.0.0",
"description": "",
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "vitest"
},
"license": "MIT",
"devDependencies": {
"@solidjs/testing-library": "^0.8.5",
"@testing-library/jest-dom": "^6.2.0",
"jsdom": "^24.0.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-solid": "^2.8.0",
"vitest": "^1.2.1"
},
"dependencies": {
"@fireproof/solid-js": "workspace:^",
"@solidjs/router": "^0.10.7",
"solid-js": "^1.8.7"
}
}
Loading

0 comments on commit c540eee

Please sign in to comment.