import { CopyBlock, atomOneLight } from 'react-code-blocks'; import { Link } from 'react-router-dom'; import { Button, Dialog, DialogHeader, DialogBody, DialogFooter, } from '@snowballtools/material-tailwind-react-fork'; interface AssignDomainProps { open: boolean; handleOpen: () => void; } const AssignDomainDialog = ({ open, handleOpen }: AssignDomainProps) => { return ( Assign Domain In order to assign a domain to your production deployments, configure it in the{' '} {/* TODO: Fix selection of project settings tab on navigation to domains */} project settings{' '} (recommended). If you want to assign to this specific deployment, however, you can do so using our command-line interface: {/* https://github.com/rajinwonderland/react-code-blocks/issues/138 */} ); }; export default AssignDomainDialog;