Skip to content

Commit

Permalink
refactor: Move files internally
Browse files Browse the repository at this point in the history
  • Loading branch information
Sidnioulz committed Nov 6, 2024
1 parent 855450c commit ff15ac3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { Meta, StoryObj } from '@storybook/react'

import { Badge, getBadgeProps } from './Badge'
import { Badge, getBadgeProps } from '../components/Badge'
import { defaultConfig } from '../defaultConfig'
import { mockEntry } from '../examples/__fixtures__/HashEntry'
import { mockEntry } from './__fixtures__/HashEntry'

const meta: Meta<typeof Badge> = {
title: 'Addon/Default Config',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ import React from 'react'
import type { Meta, StoryObj } from '@storybook/react'
import { Title, Stories } from '@storybook/blocks'

import { Badge, getBadgeProps } from './Badge'
import { Badge, getBadgeProps } from '../components/Badge'
import {
brandComponents,
byMarket,
compliance,
composition,
dependencies,
smartComponents,
} from '../examples/sampleWorkflows'
import { mockEntry } from '../examples/__fixtures__/HashEntry'
} from './sampleWorkflows'
import { mockEntry } from './__fixtures__/HashEntry'
import { TagBadgeParameters } from 'src/types/TagBadgeParameters'
import { styled } from '@storybook/theming'
import toSource from 'tosource'
Expand Down

0 comments on commit ff15ac3

Please sign in to comment.