Skip to content

Commit

Permalink
docs: Remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarfsbs authored Jul 1, 2024
1 parent cb71df0 commit 42396c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sites/docs/content/utilities/state-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Besides `log`, the returned object contains `undo` and `redo` functionality.
<!-- prettier-ignore -->
```svelte
<script lang="ts">
import { box, useStateHistory } from "runed";
import { useStateHistory } from "runed";
let count = $state(0);
const history = new StateHistory(() => count, (c) => (count = c));
Expand Down

0 comments on commit 42396c1

Please sign in to comment.