Skip to content

Commit

Permalink
updates Storybook imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mperrotti committed Jun 17, 2024
1 parent 5d49c29 commit 7c736b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react/src/Spinner/Spinner.examples.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import type {ComponentMeta} from '@storybook/react'
import type {Meta} from '@storybook/react'
import Spinner from './Spinner'
import {Box, Button} from '..'
import {VisuallyHidden} from '../internal/components/VisuallyHidden'
Expand All @@ -8,7 +8,7 @@ import {Status} from '../internal/components/Status'
export default {
title: 'Components/Spinner/Examples',
component: Spinner,
} as ComponentMeta<typeof Spinner>
} as Meta<typeof Spinner>

type LoadingState = 'initial' | 'loading' | 'done'

Expand Down

0 comments on commit 7c736b8

Please sign in to comment.