mirror of
https://github.com/wassname/talk.git
synced 2026-07-08 14:08:43 +08:00
17 lines
279 B
JavaScript
17 lines
279 B
JavaScript
import * as actions from './constants';
|
|
|
|
export const setView = view => ({
|
|
type: actions.SET_VIEW,
|
|
view,
|
|
});
|
|
|
|
export const setEmail = email => ({
|
|
type: actions.SET_EMAIL,
|
|
email,
|
|
});
|
|
|
|
export const setPassword = password => ({
|
|
type: actions.SET_PASSWORD,
|
|
password,
|
|
});
|