import { Button, Modal } from 'react-bootstrap' import React, { useState, useCallback, useContext } from 'react' import Link from 'next/link' export const FundErrorContext = React.createContext({ error: null, toggleError: () => {} }) export function FundErrorProvider ({ children }) { const [error, setError] = useState(false) const contextValue = { error, setError: useCallback(e => setError(e), []) } return ( {children} ) } export function useFundError () { const { error, setError } = useContext(FundErrorContext) return { error, setError } } export function FundErrorModal () { const { error, setError } = useFundError() return ( setError(false)} >

you have no sats

) }