trufflesuite/truffle

View on GitHub
packages/codec-components/src/react/components/codec/format.errors.code-not-supplied-error.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from "react";
import type { Format } from "@truffle/codec";
import { createCodecComponent } from "../../utils/create-codec-component";
import { Code } from "../common/code";

export const { CodeNotSuppliedError } = createCodecComponent(
  "CodeNotSuppliedError",
  ({ kind, address }: Format.Errors.CodeNotSuppliedError) => (
    <Code title={`${kind}: ${address}`}>?</Code>
  )
);