mirror of
https://github.com/wassname/talk.git
synced 2026-07-30 12:40:41 +08:00
12 lines
265 B
JavaScript
12 lines
265 B
JavaScript
import {OPEN_FEATURED_DIALOG, CLOSE_FEATURED_DIALOG} from './constants';
|
|
|
|
export const openFeaturedDialog = (comment, asset) => ({
|
|
type: OPEN_FEATURED_DIALOG,
|
|
comment,
|
|
asset,
|
|
});
|
|
|
|
export const closeFeaturedDialog = () => ({
|
|
type: CLOSE_FEATURED_DIALOG,
|
|
});
|