overleaf/services/web/frontend/js/features/outline/controllers/outline-controller.js
Alf Eaton c2b553e915 [ide-react] Improve file tree and outline components in the editor sidebar (#16225)
* Upgrade react-resizable-panels
* Add FileTreeOpenProvider
* Add OutlineProvider and OutlineContainer
* Convert Outline tests to Cypress

GitOrigin-RevId: afd9ae8190edf37642e36a4ffb331f1182c8982d
2023-12-18 09:03:53 +00:00

9 lines
305 B
JavaScript

import App from '@/base'
import { react2angular } from 'react2angular'
import { rootContext } from '@/shared/context/root-context'
import { OutlineContainer } from '@/features/outline/components/outline-container'
App.component(
'outlineContainer',
react2angular(rootContext.use(OutlineContainer))
)