mirror of
https://github.com/wassname/talk.git
synced 2026-08-07 11:29:44 +08:00
10 lines
230 B
JavaScript
10 lines
230 B
JavaScript
import {OPEN_FEATURED_DIALOG, CLOSE_FEATURED_DIALOG} from './constants';
|
|
|
|
export const openFeaturedDialog = () => ({
|
|
type: OPEN_FEATURED_DIALOG
|
|
});
|
|
|
|
export const closeFeaturedDialog = () => ({
|
|
type: CLOSE_FEATURED_DIALOG,
|
|
});
|