import React, { useState } from "react"; import "./SentenceAbsorbDeepLearning.css"; const SentenceAbsorbDeepLearning = ({ contents }) => { const [isPlaying, setIsPlaying] = useState(false); const toggleAudio = () => { const audio = document.getElementById("song-audio"); if (isPlaying) { audio.pause(); } else { audio.play(); } setIsPlaying(!isPlaying); }; return ( <> 이미지

{contents.deep.sentence}

{contents.deep.sentence_meaning}

); }; export default SentenceAbsorbDeepLearning;