BLOG-5 refactor: apply clean architecture directory structure

This commit is contained in:
SquidSpirit 2025-01-18 03:22:55 +08:00
parent 0adf77c411
commit a46c4eed9c
5 changed files with 4 additions and 4 deletions

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() {
return (

View File

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