RocketChat/Rocket.Chat

View on GitHub
packages/uikit-playground/src/Context/action/createNewScreenAction.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ActionTypes } from "../reducer";

export type CreateNewScreenAction = {
  type: ActionTypes.CreateNewScreen,
  payload?: string,
};

export const createNewScreenAction = (payload?: string): CreateNewScreenAction => ({
  type: ActionTypes.CreateNewScreen,
  payload,
});