strictMode function

ReactNode strictMode(
  1. ReactChildren children
)

Creates a strict-mode boundary node.

See https://react.dev/reference/react/StrictMode.

Implementation

ReactNode strictMode(ReactChildren children) =>
    StrictMode(normalizeChildren(children));