10 lines
318 B
TypeScript
10 lines
318 B
TypeScript
import { createComponentState } from '@/ui/utilities/state/component-state/utils/createComponentState';
|
|
|
|
import { Placement } from '@floating-ui/react';
|
|
|
|
export const dropdownPlacementComponentState =
|
|
createComponentState<Placement | null>({
|
|
key: 'dropdownPlacementComponentState',
|
|
defaultValue: null,
|
|
});
|