import { useRecoilValue } from "recoil"; import { useRemoveService } from "../appLogic"; import { serviceIdState, wasmState } from "../appState"; import { TextWithLabel } from "./TextInput"; export const IpfsDeploymentInfo = () => { const wasm = useRecoilValue(wasmState); const serviceId = useRecoilValue(serviceIdState); const removeService = useRemoveService(); return ( <>
Service deployed into Fluence network. You can observe it's service ID as well as the CID of the wasm file used to create the service