Skip to content

Commit

Permalink
docs: fix import path
Browse files Browse the repository at this point in the history
  • Loading branch information
toshusai committed Mar 10, 2024
1 parent 44b705b commit 6312f6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ npm install @toshusai/cmpui

```tsx
import { Button } from "cmpui";
import "cmpui/dist/index.css";
import "@toshusai/cmpui/dist/index.css";

export default function App() {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Import the component and the styles in your project

<Source code={`
import { Button } from 'cmpui'
import 'cmpui/dist/index.css'
import '@toshusai/cmpui/dist/index.css'
export default function App() {
return (
Expand Down

0 comments on commit 6312f6c

Please sign in to comment.