import React from "react"; const DEFAULT_HINT = "Copy and paste this code when prompted"; export default function CopyCodeBox({ text, hint }: { text: string; hint?: string; }) { return (
{text}

{hint ?? DEFAULT_HINT}

); }