Skip to content

Commit

Permalink
docs: fix typo in islands/other-island.tsx (#2706)
Browse files Browse the repository at this point in the history
very minor typo, but should still be fixed
  • Loading branch information
kjloveless authored Oct 15, 2024
1 parent 4181ef3 commit e651ea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/latest/concepts/islands.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ function randomNumber() {
return Math.floor(Math.random() * 100);
}

export default function MyIsland({ children, foo }: Props) {
export default function OtherIsland({ children, foo }: Props) {
const number = useSignal(randomNumber());

return (
Expand Down

0 comments on commit e651ea5

Please sign in to comment.