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