From abd8e17cb588d279cae6287e86a21ab0f21eb41a Mon Sep 17 00:00:00 2001 From: Corbin Crutchley Date: Fri, 20 Dec 2024 02:59:29 -0800 Subject: [PATCH] docs: fix import paths --- docs/introduction/getting-started.md | 2 +- docs/tutorials/quick-start.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/introduction/getting-started.md b/docs/introduction/getting-started.md index 31982b0..98c1701 100644 --- a/docs/introduction/getting-started.md +++ b/docs/introduction/getting-started.md @@ -62,7 +62,7 @@ Angular Redux includes a `provideRedux` provider factory, which makes the Redux ```typescript import { bootstrapApplication } from "@angular/platform-browser"; -import { provideRedux } from "angular-redux"; +import { provideRedux } from "@reduxjs/angular-redux"; import { AppComponent } from "./app/app.component"; import { store } from "./store"; diff --git a/docs/tutorials/quick-start.md b/docs/tutorials/quick-start.md index d4b9aa4..acd1e36 100644 --- a/docs/tutorials/quick-start.md +++ b/docs/tutorials/quick-start.md @@ -40,7 +40,7 @@ For this tutorial, we assume that you're using Redux Toolkit and Angular Redux t Add the Redux Toolkit and Angular Redux packages to your project: ```sh -npm install @reduxjs/toolkit angular-redux +npm install @reduxjs/toolkit @reduxjs/angular-redux ``` ### Create a Redux Store @@ -65,7 +65,7 @@ Once the store is created, we can make it available to our Angular components by import { bootstrapApplication } from "@angular/platform-browser"; import { AppComponent } from "./app/app.component"; // highlight-start -import { provideRedux } from "angular-redux"; +import { provideRedux } from "@reduxjs/angular-redux"; import { store } from "./store"; // highlight-end