mirror of
https://github.com/Instadapp/assembly.git
synced 2024-07-29 22:37:06 +00:00
11 lines
242 B
TypeScript
11 lines
242 B
TypeScript
|
import { useModal } from "./useModal";
|
||
|
import Web3Modal from "~/components/modal/web3/Web3Modal.vue";
|
||
|
|
||
|
export const useWeb3Modal = () => {
|
||
|
const { showComponent } = useModal();
|
||
|
|
||
|
return {
|
||
|
open: () => showComponent(Web3Modal)
|
||
|
};
|
||
|
};
|