(props)
| 56 | * 网页渲染容器 |
| 57 | */ |
| 58 | export const Webview: React.FC<WebviewProps> = (props) => { |
| 59 | const KernelComponent = useMemo(() => getWebviewKernel(), []); |
| 60 | |
| 61 | return <KernelComponent className="w-full h-full" src={props.url} />; |
| 62 | }; |
| 63 | Webview.displayName = 'Webview'; |
| 64 | |
| 65 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected