import React from "react" const RFCLink = ({ rfc, draft, children }) => { const destination = draft ? `https://www.iana.org/go/draft-${rfc}` : `https://tools.ietf.org/html/rfc${rfc}`; const text = draft ? `RFC-${rfc}` : `RFC${rfc}`; return ( {children} ({text}) ) } export default RFCLink