mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-08-03 14:22:06 +00:00
7 lines
206 B
TypeScript
7 lines
206 B
TypeScript
![]() |
import React, { ReactNode } from "react";
|
||
|
import { Inspector } from "react-dev-inspector";
|
||
|
|
||
|
export function rootContainer(container: ReactNode) {
|
||
|
return React.createElement(Inspector, null, container);
|
||
|
}
|