diff --git a/packages/web-components/src/_docs/integrations/angular.stories.mdx b/packages/web-components/src/_docs/integrations/angular.stories.mdx index a5321c08a37e6..29981bc5f8a83 100644 --- a/packages/web-components/src/_docs/integrations/angular.stories.mdx +++ b/packages/web-components/src/_docs/integrations/angular.stories.mdx @@ -37,7 +37,7 @@ With all the basic pieces in place, let's run our app in dev mode with `ng serve First, open your `src/main.ts` file and add the following code: ```ts -import { provideFluentDesignSystem, fluentCard, fluentButton, fluentTextField } from '@microsoft/fluent-components'; +import { provideFluentDesignSystem, fluentCard, fluentButton, fluentTextField } from '@fluentui/web-components'; provideFluentDesignSystem().register(fluentCard(), fluentButton(), fluentTextField()); ```