Skip to content

Commit

Permalink
fix: run lint
Browse files Browse the repository at this point in the history
  • Loading branch information
CrowsVeldt committed Jan 16, 2025
1 parent 17e0273 commit cc7f3d5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 4 additions & 2 deletions packages/components/src/Accordion/Accordion.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import type { StoryFn, Meta } from '@storybook/react'
import { Accordion } from './Accordion'
import { Text } from 'theme-ui'

import { Accordion } from './Accordion'

import type { Meta,StoryFn } from '@storybook/react'

export default {
title: 'Components/Accordion',
component: Accordion,
Expand Down
1 change: 1 addition & 0 deletions packages/components/src/Accordion/Accordion.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { describe, expect, it } from 'vitest'

import { render } from '../test/utils'
import { Default } from './Accordion.stories'

import type { IProps } from './Accordion'

describe('Accordion', () => {
Expand Down
5 changes: 4 additions & 1 deletion packages/components/src/Accordion/Accordion.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import { useState } from 'react'
import { Flex, Heading, Text, ThemeUIStyleObject } from 'theme-ui'
import { Flex, Heading, Text } from 'theme-ui'

import { Icon } from '../Icon/Icon'

import type { ThemeUIStyleObject } from 'theme-ui';

export interface IProps {
children: React.ReactNode
sx?: ThemeUIStyleObject | undefined
Expand Down

0 comments on commit cc7f3d5

Please sign in to comment.