Skip to content

Commit bf67cc7

Browse files
authored
Merge pull request #279 from user-interviews/fix-mdx-imports
Some mdx files importing wrong component
2 parents ea52476 + 916f832 commit bf67cc7

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/Alert/Alert.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks';
2-
import { Alert } from './Alert'
2+
import Alert from './Alert'
33

44
# Alerts
55

src/Avatar/Avatar.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks';
2-
import { Avatar } from './Avatar';
2+
import Avatar from './Avatar';
33

44
# Avatar
55
Displays a user's initials or profile photo.

src/Card/Card.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks';
2-
import { Card } from './Card';
2+
import Card from './Card';
33

44
# Cards
55
Cards serve as containers to help group content on a page, and should always be placed over a background color of `$ux-gray-100` to maintain contrast against the page.

src/Form/Form.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks';
2-
import { Form } from './Form';
2+
import Form from './Form';
33

44
# Form
55
A wrapper component that handles the submission of forms.

src/Modal/Modal.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks';
2-
import { Modal } from './Modal';
2+
import Modal from './Modal';
33

44
# Modal
55

src/Pill/Pill.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks';
2-
import { Pill } from './Pill';
2+
import Pill from './Pill';
33

44
# Pill
55
Represents an object that can be viewed with or without an icon

src/Popper/Popper.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks';
2-
import { Popper } from './Popper';
2+
import Popper from './Popper';
33

44
# Popper
55
A Popper can be used to display some content on top of another.

src/ProfileCell/ProfileCell.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ArgsTable, Story, Preview } from '@storybook/addon-docs/blocks';
2-
import { ProfileCell } from './ProfileCell';
2+
import ProfileCell from './ProfileCell';
33

44
# Profile Cell
55
Displays information about a user which can include an avatar, name, email, phone number, timezone (or other relevant pieces of information).

0 commit comments

Comments
 (0)