Compare commits

..

3 Commits

View File

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