프로젝트를 진행하면서, 영어로 된 문장을 한국어로 바꿔야 되는 일이 생겼다. 서버를 켜지 않고도 번역 기능을 사용하고 싶어서, MyMemory를 선택하게 되었다.( 원래는 다른 오픈 소스 API를 쓰려고 했었는데, Axios 에러와 CORS 문제가 생겨서 MyMemory로 ) 어색한 문장들도 있지만, 나름 잘 번역이 되는 것 같아서 만족하고 있다. // src > components > Char > Huggingwrite.tsximport React, { useState } from 'react';import { useTranslation } from 'react-i18next';import { translateText } from '../../services/translateService'; //..