🩹(react) export Popover component and its props

Include missing Popover component exports to the React package.
Re-order package exports to be alphabetically sorted.
This commit is contained in:
Lebaud Antoine
2023-10-02 21:35:18 +02:00
committed by aleb_the_flash
parent c370970ec4
commit 0c757957a7
3 changed files with 9 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ import React, {
import classNames from "classnames";
import { useHandleClickOutside } from ":/hooks/useHandleClickOutside";
type PopoverProps = PropsWithChildren & {
export type PopoverProps = PropsWithChildren & {
parentRef: RefObject<HTMLDivElement>;
onClickOutside: () => void;
borderless?: boolean;