Compare commits

..

3 Commits

View File

@ -9,12 +9,12 @@ import { tagStartedAction, tagStoppedAction } from "../../presenter/tagSlice";
export default function SelfTags() {
return (
<Provider store={tagStore}>
<_Tags />
<_SelfTags />
</Provider>
);
}
function _Tags() {
function _SelfTags() {
const tags = useTagSelector((state) => state.tag.tags);
const dispatch = useTagDispatch();