import React, { useEffect } from "react"; import "./WordBundleBasicLearning.css"; const WordBundleBasicLearning = ({ contents }) => { if (!contents) { return
Loading...
; } return ( <> 이미지

{contents.word}

{contents.wordMeaning}

); }; export default WordBundleBasicLearning;