hmu332233 / tips

https://tips.minung.dev
1 stars 0 forks source link

외부 js 라이브러리 불러오기 #14

Open hmu332233 opened 4 years ago

hmu332233 commented 4 years ago

Search Keyword

hmu332233 commented 2 years ago
componentDidMount() {
      if (!document.getElementById('KakaoJSSDK')) {
        const scriptKakaoJS = document.createElement('script');
        scriptKakaoJS.id = 'KakaoJSSDK';
        scriptKakaoJS.src = '//developers.kakao.com/sdk/js/kakao.min.js';
        document.body.appendChild(scriptKakaoJS);
      }
}