Skip to content

Commit

Permalink
fix: import React
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbychan committed Dec 12, 2023
1 parent 70d8b19 commit f9fc402
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/react/stories/button.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { CheckCircleIcon, ExclamationCircleFilledIcon, InfoIcon } from '@alice-ui/icons';
import type { Meta, StoryObj } from '@storybook/react';
import React from 'react';
import { Button } from '../src/button';

const meta: Meta<typeof Button> = {
Expand Down
1 change: 1 addition & 0 deletions packages/react/stories/close-button.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { MinusIcon, PlusIcon } from '@alice-ui/icons';
import type { Meta, StoryObj } from '@storybook/react';
import React from 'react';
import { CloseButton } from '../src/button';

const meta: Meta<typeof CloseButton> = {
Expand Down
1 change: 1 addition & 0 deletions packages/react/stories/icon-button.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { CheckCircleIcon, ExclamationCircleFilledIcon, InfoIcon } from '@alice-ui/icons';
import type { Meta, StoryObj } from '@storybook/react';
import React from 'react';
import { IconButton } from '../src/button';

const meta: Meta<typeof IconButton> = {
Expand Down
1 change: 1 addition & 0 deletions packages/react/stories/input.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { MoonFilledIcon } from '@alice-ui/icons';
import { input } from '@alice-ui/theme';
import { Meta, StoryObj } from '@storybook/react';
import React from 'react';
import { Input, InputProps } from '../src/input';

const meta: Meta<typeof Input> = {
Expand Down
1 change: 1 addition & 0 deletions packages/react/stories/number-input.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { numberInput } from '@alice-ui/theme';
import { Meta, StoryObj } from '@storybook/react';
import React from 'react';
import { Form } from 'react-aria-components';
import { Button } from '../src/button';
import { NumberInput, NumberInputProps } from '../src/number-input';
Expand Down
1 change: 1 addition & 0 deletions packages/react/stories/select.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { button, select } from '@alice-ui/theme';
import { Meta, StoryObj } from '@storybook/react';
import React from 'react';
import { Collection } from 'react-aria-components';
import { Select, SelectItem, SelectProps, SelectSection } from '../src/select';

Expand Down
1 change: 1 addition & 0 deletions packages/react/stories/skeleton.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Meta, StoryObj } from '@storybook/react';
import React from 'react';
import { Skeleton } from '../src/skeleton/skeleton';

const meta: Meta<typeof Skeleton> = {
Expand Down
1 change: 1 addition & 0 deletions packages/react/stories/spinner.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Meta, StoryObj } from '@storybook/react';
import React from 'react';
import { Spinner, SpinnerProps } from '../src/spinner';

const meta: Meta<typeof Spinner> = {
Expand Down
1 change: 1 addition & 0 deletions packages/react/stories/textarea.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { input } from '@alice-ui/theme';
import { Meta, StoryObj } from '@storybook/react';
import React from 'react';
import { TextArea, TextAreaProps } from '../src/input';

const meta: Meta<typeof TextArea> = {
Expand Down

0 comments on commit f9fc402

Please sign in to comment.