import { OLModal } from '@/shared/components/ol/ol-modal' import GitModalContent from './git-modal-content' type Props = { show: boolean projectId: string handleHide: () => void } export default function GitModalWrapper({ show, projectId, handleHide, }: Props) { return ( ) }