File size: 213 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
// @flow
import type { TitlebarPayloadProps } from 'src/views/globalTitlebar';
export const setTitlebarProps = (payload: TitlebarPayloadProps) => {
return {
type: 'SET_TITLEBAR_PROPS',
payload,
};
};
|