mirror of
https://github.com/wassname/talk.git
synced 2026-07-16 11:22:16 +08:00
11 lines
222 B
JavaScript
11 lines
222 B
JavaScript
import {SET_CONTENT_SLOT, RESET_CONTENT_SLOT} from './constants';
|
|
|
|
export const setContentSlot = (slot) => ({
|
|
type: SET_CONTENT_SLOT,
|
|
slot,
|
|
});
|
|
|
|
export const resetContentSlot = () => ({
|
|
type: RESET_CONTENT_SLOT,
|
|
});
|