mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 02:00:10 +02:00
IDE page: connection manager and loading screen GitOrigin-RevId: 2cbc8c09aeb36a14eae66da78b267c7a830fb71a
7 lines
205 B
TypeScript
7 lines
205 B
TypeScript
import { ConnectionProvider } from './connection-context'
|
|
import { FC } from 'react'
|
|
|
|
export const ReactContextRoot: FC = ({ children }) => {
|
|
return <ConnectionProvider>{children}</ConnectionProvider>
|
|
}
|