15 lines
392 B
TypeScript
15 lines
392 B
TypeScript
import { useEffect, useState } from 'react'
|
|
import { Contract, listenForContract } from '../lib/firebase/contracts'
|
|
|
|
export const useContract = (contractId: string) => {
|
|
const [contract, setContract] = useState<Contract | null | 'loading'>(
|
|
'loading'
|
|
)
|
|
|
|
useEffect(() => {
|
|
if (contractId) return listenForContract(contractId, setContract)
|
|
}, [contractId])
|
|
|
|
return contract
|
|
}
|