From b537e8d12ffac249ccacb3cf03858583339e209b Mon Sep 17 00:00:00 2001 From: Rusty Date: Mon, 9 Dec 2024 14:04:48 -0800 Subject: [PATCH] docs: Use slash import in first example (#3066) Updates the first example in readme to use slash imports [category:Documentation] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f6301d4f7e..cd4667a161 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ npm install @workday/canvas-kit-react ```tsx import * as React from 'react'; -import {SecondaryButton} from '@workday/canvas-kit-react'; +import {SecondaryButton} from '@workday/canvas-kit-react/button'; Button Label; ```