From 12d50d5938930c73a488b5b69c46acc938a02825 Mon Sep 17 00:00:00 2001 From: Necati Meral Date: Thu, 16 Nov 2023 19:11:30 +0100 Subject: [PATCH] Update angular.stories.mdx Fix import --- .../web-components/src/_docs/integrations/angular.stories.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web-components/src/_docs/integrations/angular.stories.mdx b/packages/web-components/src/_docs/integrations/angular.stories.mdx index a5321c08a37e60..29981bc5f8a838 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()); ```