Compare commits

..

3 Commits

View File

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