import Icon from "@mdi/react"; import {mdiContentCopy} from "@mdi/js"; const Enable = (props) => { const handleCopy = async () => { let copiedText = document.getElementById("zrok-enable-command").innerHTML; try { await navigator.clipboard.writeText(copiedText); console.log("copied enable command"); } catch(err) { console.error("failed to copy", err); } } return <>

Enable an Environment

To enable your shell for zrok, use this command:

                $ zrok enable {props.token} 
            
} export default Enable