* Configure stack navigation to display header * Use wallet connect to connect with dApps * Replace react-native alerts with js alerts * Add example env file * Remove unnecessary code * Make UI changes * Uncomment required code * Remove unnecessary dependencies * Remove any type * Fix indentation --------- Co-authored-by: Shreerang Kale <shreerangkale@gmail.com> Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
40 lines
945 B
TypeScript
40 lines
945 B
TypeScript
import React, { createContext, useContext, useState } from 'react';
|
|
|
|
import { Account } from '../types';
|
|
|
|
const AccountsContext = createContext<{
|
|
accounts: Account[];
|
|
setAccounts: (account: Account[]) => void;
|
|
currentIndex: number;
|
|
setCurrentIndex: (index: number) => void;
|
|
}>({
|
|
accounts: [],
|
|
setAccounts: () => {},
|
|
currentIndex: 0,
|
|
setCurrentIndex: () => {},
|
|
});
|
|
|
|
const useAccounts = () => {
|
|
const accountsContext = useContext(AccountsContext);
|
|
return accountsContext;
|
|
};
|
|
|
|
const AccountsProvider = ({ children }: { children: React.ReactNode }) => {
|
|
const [accounts, setAccounts] = useState<Account[]>([]);
|
|
const [currentIndex, setCurrentIndex] = useState<number>(0);
|
|
|
|
return (
|
|
<AccountsContext.Provider
|
|
value={{
|
|
accounts,
|
|
setAccounts,
|
|
currentIndex,
|
|
setCurrentIndex,
|
|
}}>
|
|
{children}
|
|
</AccountsContext.Provider>
|
|
);
|
|
};
|
|
|
|
export { useAccounts, AccountsProvider };
|