mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-18 15:13:21 +08:00
8 lines
206 B
JavaScript
8 lines
206 B
JavaScript
import { SHOW_LEAVE_TEAM_MODAL } from "../../app/action_types";
|
|
|
|
export function leaveTeamModalShow(show = false, team = {}) {
|
|
return {
|
|
payload: { team, show },
|
|
type: SHOW_LEAVE_TEAM_MODAL
|
|
};
|
|
}
|