usePostMessage ​
Hook that allows you to receive messages from other origins
browser
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 | string | string[] | - | The origin of the message |
callback | (message: Message) => Message | - | callback to get received message |
Returns
(message: Message) => void
Type declaration ​
typescript
export type UsePostMessageReturn<Message> = (message: Message) => void;
Source ​
Source • DemoContributors ​
D
B