mirror of
https://github.com/MrXujiang/h5-Dooring.git
synced 2026-02-25 17:40:26 +00:00
13 lines
261 B
TypeScript
13 lines
261 B
TypeScript
// @ts-nocheck
|
|
/* eslint-disable import/no-dynamic-require */
|
|
import React from 'react';
|
|
import Provider from './Provider';
|
|
|
|
export function rootContainer(container: React.ReactNode) {
|
|
return React.createElement(
|
|
Provider,
|
|
null,
|
|
container,
|
|
);
|
|
}
|