mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
de245c288a
Adding documentation button on the editor GitOrigin-RevId: e03fd7b931eb0fe7273e6e9d0185c81c384df916
9 lines
351 B
JavaScript
9 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), [])
|
|
)
|