import React from 'react' import PropTypes from 'prop-types' import styles from './ConnectionDetails.scss' const ConnectionDetails = ({ connectionHost, connectionCert, connectionMacaroon, setConnectionHost, setConnectionCert, setConnectionMacaroon, startLndHostError, startLndCertError, startLndMacaroonError }) => (
Hostname and port of the Lnd gRPC interface. Example: localhost:10009
{startLndHostError}
Path to the lnd tls cert. Example: /path/to/tls.cert
{startLndCertError}
Path to the lnd macaroon file. Example: /path/to/admin.macaroon
{startLndMacaroonError}