import React from "react"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faAngleRight } from "@fortawesome/free-solid-svg-icons/faAngleRight"; import TransactionAddress from "./TransactionAddress"; import AddressHighlighter from "./AddressHighlighter"; import DecoratedAddressLink from "./DecoratedAddressLink"; import { InternalOperation } from "../types"; type InternalCreateProps = { internalOp: InternalOperation; }; const InternalCreate: React.FC = ({ internalOp }) => (
CREATE Contract
(Creator: )
); export default InternalCreate;