diff --git a/web/src/feature/AccountList/index.tsx b/web/src/feature/AccountList/index.tsx index b76deca..8bee291 100644 --- a/web/src/feature/AccountList/index.tsx +++ b/web/src/feature/AccountList/index.tsx @@ -1,7 +1,8 @@ -import { useDbContext } from "@/context/db/db"; +import { useDbContext } from "@/context/db"; import { type LocalAccount, useAccountRepo } from "@/repository/account"; import { CirclePlus, User } from "lucide-react"; import { useEffect, useState, type FC } from "react"; +import { Link } from "react-router-dom"; const AccountList: FC = () => { const [accounts, setAccounts] = useState([]); @@ -72,16 +73,18 @@ const AccountList: FC = () => { ))} -
-
-
- + +
+
+
+ +
+

+ Add new account +

-

- Add new account -

-
+ ); };