diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-01-24 15:54:48 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-01-24 15:54:48 +0700 |
| commit | ee4297280c1305c7e03bedd4df63ccf136c28c6c (patch) | |
| tree | 62eb00777f42542a37c63687dd1536f8f56df894 /src/pages/my/address/index.js | |
| parent | 23b31aa10302cc990f3fb083b8189233b2e9e08d (diff) | |
Merapihkan struktur folder
Diffstat (limited to 'src/pages/my/address/index.js')
| -rw-r--r-- | src/pages/my/address/index.js | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/pages/my/address/index.js b/src/pages/my/address/index.js index 236e4b60..dbe082ff 100644 --- a/src/pages/my/address/index.js +++ b/src/pages/my/address/index.js @@ -1,12 +1,14 @@ import { useEffect, useState } from "react"; -import AppBar from "../../../components/AppBar"; -import Layout from "../../../components/Layout"; -import Link from "../../../components/Link"; -import WithAuth from "../../../components/WithAuth"; -import apiOdoo from "../../../helpers/apiOdoo"; -import { useAuth } from "../../../helpers/auth"; import { useRouter } from "next/router"; -import { createOrUpdateItemAddress, getItemAddress } from "../../../helpers/address"; + +import AppBar from "@/components/layouts/AppBar"; +import Layout from "@/components/layouts/Layout"; +import Link from "@/components/elements/Link"; +import WithAuth from "@/components/auth/WithAuth"; + +import apiOdoo from "@/core/utils/apiOdoo"; +import { useAuth } from "@/core/utils/auth"; +import { createOrUpdateItemAddress, getItemAddress } from "@/core/utils/address"; export default function Address() { const router = useRouter(); |
