mirror of
https://github.com/wassname/talk.git
synced 2026-07-21 12:51:03 +08:00
8 lines
157 B
JavaScript
8 lines
157 B
JavaScript
import * as actions from '../constants/embedStream';
|
|
|
|
export const changeTab = view => dispatch =>
|
|
dispatch({
|
|
type: actions.CHANGE_TAB,
|
|
view
|
|
});
|