BLOG-5 refactor: apply clean architecture directory structure
This commit is contained in:
parent
0adf77c411
commit
a46c4eed9c
@ -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 (
|
||||
|
@ -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 (
|
Loading…
x
Reference in New Issue
Block a user