/* SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file) SPDX-License-Identifier: AGPL-3.0-only */ import React, { useEffect, useRef } from 'react' export interface AbcFrameProps { code: string } export const AbcFrame: React.FC = ({ code }) => { const container = useRef(null) useEffect(() => { if (!container.current) { return } const actualContainer = container.current import(/* webpackChunkName: "abc.js" */ 'abcjs').then((imp) => { imp.renderAbc(actualContainer, code) }).catch(() => { console.error('error while loading abcjs') }) }, [code]) return
}