diff --git a/src/routes/concepts/stores.mdx b/src/routes/concepts/stores.mdx index bf0fe6a7f..748ada6ae 100644 --- a/src/routes/concepts/stores.mdx +++ b/src/routes/concepts/stores.mdx @@ -423,7 +423,7 @@ When new information needs to be merged into an existing store `reconcile` can b `reconcile` will determine the differences between new and existing data and initiate updates only when there are _changed_ values, thereby avoiding unnecessary updates. ```jsx -import { createStore, reconcile } from "solid-js/stores" +import { createStore, reconcile } from "solid-js/store" const [data, setData] = createStore({ animals: ['cat', 'dog', 'bird', 'gorilla']