usePostMessage
Hook that allows you to receive messages from other origins
browser
low
test coverage
Last changed: last month
Installation
Library
CLI
Manual
typescript
import { usePostMessage } from '@siberiacancode/reactuse';Usage
typescript
const postMessage = usePostMessage();Demo
Api
Parameters
| Name | Type | Default | Note |
|---|---|---|---|
| origin | UsePostMessageOrigin | - | The origin of the message |
| callback | (message: Message) => Message | - | callback to get received message |
Returns
(message: Message) => void
Type declaration
typescript
export type UsePostMessageOrigin = string | '*' | string[];
export type UsePostMessageReturn<Message> = (message: Message) => void;Source
Source • DemoContributors
D
I
B