mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-14 02:06:29 +00:00
11 lines
133 B
JavaScript
11 lines
133 B
JavaScript
function updateUser (user) {
|
|
return {
|
|
type: 'USER_UPDATE',
|
|
data: user
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
updateUser: updateUser
|
|
}
|