RocketChat/Rocket.Chat

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

Summary

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

export type DeleteScreenAction = {
  type: ActionTypes.DeleteScreen,
  payload: string,
};

export const deleteScreenAction = (payload: string): DeleteScreenAction => ({
  type: ActionTypes.DeleteScreen,
  payload,
});