mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
10 lines
351 B
JavaScript
10 lines
351 B
JavaScript
|
import { react2angular } from 'react2angular'
|
||
|
import DocumentationButton from '../components/documentation-button'
|
||
|
import { rootContext } from '../../../../../frontend/js/shared/context/root-context'
|
||
|
import App from '../../../../../frontend/js/base'
|
||
|
|
||
|
App.component(
|
||
|
'documentationButton',
|
||
|
react2angular(rootContext.use(DocumentationButton), [])
|
||
|
)
|