mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-05 07:09:02 +02:00
74c6085c55
Revert "IDE scope store and emitter" GitOrigin-RevId: bb764c66830e5e30806609b2834f918cf7784dd7
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>
|
|
}
|