2021-09-03 05:06:28 -04:00
|
|
|
import App from '../../../base'
|
|
|
|
import { react2angular } from 'react2angular'
|
|
|
|
|
2021-09-30 07:29:25 -04:00
|
|
|
import PdfPreview from '../components/pdf-preview'
|
|
|
|
import { rootContext } from '../../../shared/context/root-context'
|
2022-05-23 07:59:08 -04:00
|
|
|
import {
|
|
|
|
DefaultSynctexControl,
|
|
|
|
DetacherSynctexControl,
|
|
|
|
} from '../components/detach-synctex-control'
|
2021-09-03 05:06:28 -04:00
|
|
|
|
2021-09-30 07:29:25 -04:00
|
|
|
App.component('pdfPreview', react2angular(rootContext.use(PdfPreview), []))
|
2021-10-21 06:31:51 -04:00
|
|
|
App.component(
|
|
|
|
'pdfSynctexControls',
|
2022-05-23 07:59:08 -04:00
|
|
|
react2angular(rootContext.use(DefaultSynctexControl), [])
|
2021-10-21 06:31:51 -04:00
|
|
|
)
|
2021-11-30 09:54:14 -05:00
|
|
|
App.component(
|
|
|
|
'detacherSynctexControl',
|
|
|
|
react2angular(rootContext.use(DetacherSynctexControl), [])
|
|
|
|
)
|