mirror of
https://github.com/wassname/talk.git
synced 2026-07-03 11:28:25 +08:00
10 lines
129 B
JavaScript
10 lines
129 B
JavaScript
export const addTag = tag => ({
|
|
type: 'ADD_TAG',
|
|
tag
|
|
});
|
|
|
|
export const removeTag = idx => ({
|
|
type: 'REMOVE_TAG',
|
|
idx
|
|
});
|