Skip to content

Commit

Permalink
chore(dropdown) : 컨벤션 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
caseBread committed Mar 2, 2024
1 parent c0f76a0 commit 44edcd8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/common/Popover.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React, { useEffect } from 'react';

type TProps = {
interface Props {
className?: string;
children: React.ReactNode;
onClose: () => void;
};
}

const Popover: React.FC<TProps> = ({ className, children, onClose }) => {
const Popover = ({ className, children, onClose }: Props) => {
const wrapperRef = React.useRef<HTMLDivElement>(null);

useEffect(() => {
Expand Down

0 comments on commit 44edcd8

Please sign in to comment.