Add accounts list as a provider

This commit is contained in:
2025-04-07 22:12:26 +02:00
parent 90bb4db806
commit ad4c0d2885
4 changed files with 146 additions and 30 deletions

View File

@@ -1,3 +1,7 @@
import { useAccounts } from "../hooks/AccountsListProvider";
export function HomeRoute(): React.ReactElement {
const accounts = useAccounts();
console.log(accounts.list.list);
return <>home authenticated todo</>;
}