(currentProject)
| 56 | }, []); |
| 57 | |
| 58 | const showDetailProject = (currentProject) => { |
| 59 | refDetails.current.click(); |
| 60 | setProject({ |
| 61 | id: currentProject._id, |
| 62 | etitle: currentProject.title, |
| 63 | edescription: currentProject.description, |
| 64 | egitHubLink: currentProject.gitHubLink, |
| 65 | eyouTubeLink: currentProject.youTubeLink, |
| 66 | }); |
| 67 | }; |
| 68 | |
| 69 | const handleVideoClose = () => { |
| 70 | setShowVideo(false); |
no outgoing calls
no test coverage detected