mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-18 07:01:58 +08:00
8 lines
210 B
JavaScript
8 lines
210 B
JavaScript
import { SHOW_LEAVE_TEAM_MODAL } from "../../app/action_types";
|
|
|
|
export function leaveTeamModalShow(show, id, teamName) {
|
|
return({
|
|
payload: { show, id, teamName },
|
|
type: SHOW_LEAVE_TEAM_MODAL
|
|
});
|
|
}
|