Skip to content

Commit

Permalink
chore: release new examples (#2557)
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinhagemeister authored Jun 28, 2024
1 parent 8699586 commit 76a823e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fresh/examples",
"version": "1.0.0",
"version": "1.0.1",
"exports": {
"./island": "./src/island.tsx",
"./app1": "./src/app1.tsx",
Expand Down
2 changes: 1 addition & 1 deletion examples/src/island.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useSignal } from "@preact/signals";
import type { JSX } from "preact";

export default function DemoIsland(): JSX.Element {
export function DemoIsland(): JSX.Element {
const count = useSignal(0);

return (
Expand Down

0 comments on commit 76a823e

Please sign in to comment.