UNPKG

@gitborlando/utils

Version:

JavaScript/TypeScript 实用工具集合

13 lines (12 loc) 276 B
// src/react/index.ts import { createElement, Suspense, useRef } from "react"; function useHTMLElement(tag) { return useRef(null); } function withSuspense(node, fallback) { return createElement(Suspense, { fallback }, node); } export { useHTMLElement, withSuspense };