Skip to content

Commit 49caef8

Browse files
committed
chore: sort imports
1 parent de3a24f commit 49caef8

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/__tests__/index.test.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { render } from '@testing-library/react'
22
import React, { useEffect } from 'react'
3+
34
import { useBottomSheetMachine } from '..'
45

56
describe('useBottomSheetMachine', () => {

src/index.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
import { useMemo, useState } from 'react'
2-
import { interpret } from 'xstate'
3-
import { useSyncExternalStore } from 'use-sync-external-store/shim'
41
import {
5-
BottomSheetMachine,
62
type BottomSheetEvent,
3+
BottomSheetMachine,
74
} from '@bottom-sheet/state-machine'
85
import {
9-
assignSnapPoints,
106
assignInitialHeight,
7+
assignSnapPoints,
118
defaultInitialHeight,
129
defaultSnapPoints,
1310
} from '@bottom-sheet/state-machine'
1411
import type { GetInitialHeight, GetSnapPoints } from '@bottom-sheet/types'
12+
import { useMemo, useState } from 'react'
13+
import { useSyncExternalStore } from 'use-sync-external-store/shim'
14+
import { interpret } from 'xstate'
1515

1616
export interface BottomSheetMachineProps {
1717
initialHeight?: number | GetInitialHeight

0 commit comments

Comments
 (0)