@trashpanda001/helpers
    Preparing search index...

    Function useBodyStyle

    • Sets body element style. Merges with existing styling and restores original styling on unmount.

      Parameters

      • styleObject: CSSProperties

        a React / JSON style object with camelCase keys

      Returns void

      import { useBodyStyle } from "@trashpanda001/helpers/react"

      function Component() {
      useBodyStyle({ backgroundColor: "red", color: "white" })
      return <div>...</div>
      }