import React, { useEffect, useState } from 'react'; export default function ModalCommon({children, hideModal}){ return (

{children}

閉じるボタン

) }