mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
c2b553e915
* Upgrade react-resizable-panels * Add FileTreeOpenProvider * Add OutlineProvider and OutlineContainer * Convert Outline tests to Cypress GitOrigin-RevId: afd9ae8190edf37642e36a4ffb331f1182c8982d
9 lines
305 B
JavaScript
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))
|
|
)
|