Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ynwd committed Aug 13, 2024
1 parent 8a91336 commit 2122d73
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion components/button.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { ComponentChildren } from "https://esm.sh/[email protected].1";
import type { ComponentChildren } from "https://esm.sh/[email protected].2";

export default function Button(props: { children: ComponentChildren }) {
return (
Expand Down
4 changes: 2 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
},
"imports": {
"@app/": "./",
"preact": "https://esm.sh/[email protected].1",
"preact/": "https://esm.sh/[email protected].1/",
"preact": "https://esm.sh/[email protected].2",
"preact/": "https://esm.sh/[email protected].2/",
"chalk": "npm:chalk@5"
},
"compilerOptions": {
Expand Down
6 changes: 3 additions & 3 deletions http/server/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ export { assertEquals } from "jsr:@std/assert@^0.226.0/assert-equals";
export { assertExists } from "jsr:@std/assert@^0.226.0/assert-exists";
export { assert } from "jsr:@std/assert@^0.226.0/assert";

export { h } from "https://esm.sh/[email protected].1";
export { h } from "https://esm.sh/[email protected].2";
export type {
ComponentChild,
ComponentChildren,
JSX,
VNode,
} from "https://esm.sh/[email protected].1";
export { renderToString } from "https://esm.sh/[email protected][email protected].1";
} from "https://esm.sh/[email protected].2";
export { renderToString } from "https://esm.sh/[email protected][email protected].2";

0 comments on commit 2122d73

Please sign in to comment.