코딩/React
type
춘 몽
2024. 5. 24. 08:37
728x90
import { Dispatch, RefObject, SetStateAction } from "react";
export interface IMPlaylist {
playlistRef: RefObject<HTMLDivElement>;
seletedPlaylist: string | null;
setSeletedPlaylist: Dispatch<SetStateAction<string | null>>;
setShowPlaylist: Dispatch<SetStateAction<boolean>>;
showPlaylist: boolean;
}
728x90