Skip to content

Commit

Permalink
docs: fix import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
crutchcorn committed Dec 20, 2024
1 parent 5e7dc99 commit abd8e17
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/introduction/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down

0 comments on commit abd8e17

Please sign in to comment.