BLOG-5 Apply the first view #15

Merged
squid merged 6 commits from BLOG-5_apply_the_first_view into main 2025-01-18 03:41:56 +08:00
5 changed files with 4 additions and 4 deletions
Showing only changes of commit c16e3f29a0 - Show all commits

View File

@ -1,4 +1,4 @@
import SelfTags from "@/lib/home/presenter/ui/SelfTags"; import SelfTags from "@/lib/home/framework/ui/SelfTags";
export default function HomePage() { export default function HomePage() {
return ( return (

View File

@ -1,10 +1,10 @@
"use client"; "use client";
import { Provider } from "react-redux"; import { Provider } from "react-redux";
import tagStore from "../redux/tagStore"; import tagStore from "../../presenter/tagStore";
import { useTagDispatch, useTagSelector } from "../redux/tagHooks"; import { useTagDispatch, useTagSelector } from "../../presenter/tagHooks";
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
import { tagStartedAction, tagStoppedAction } from "../redux/tagSlice"; import { tagStartedAction, tagStoppedAction } from "../../presenter/tagSlice";
export default function SelfTags() { export default function SelfTags() {
return ( return (