mirror of
https://github.com/whippyshou/mastodon
synced 2024-11-30 07:48:59 +09:00
9 lines
156 B
React
9 lines
156 B
React
|
export const SET_ACCESS_TOKEN = 'SET_ACCESS_TOKEN';
|
||
|
|
||
|
export function setAccessToken(token) {
|
||
|
return {
|
||
|
type: SET_ACCESS_TOKEN,
|
||
|
token: token
|
||
|
};
|
||
|
}
|