trufflesuite/truffle

View on GitHub
packages/codec-components/src/react/components/codec/format.values.function-internal-raw-info-index.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 { FunctionInternalRawInfoIndex } = createCodecComponent(
  "FunctionInternalRawInfoIndex",
  ({ functionIndex }: Format.Values.FunctionInternalRawInfoIndex) => {
    return <Code>(Function index: {functionIndex})</Code>;
  }
);