()
| 118 | }; |
| 119 | |
| 120 | const Subscribe = () => { |
| 121 | return ( |
| 122 | <Dialog> |
| 123 | <DialogTrigger asChild> |
| 124 | <Button size="sm" className="flex items-center"> |
| 125 | <Mail className="mr-2 h-3 w-3" /> Subscribe |
| 126 | </Button> |
| 127 | </DialogTrigger> |
| 128 | <DialogContent> |
| 129 | <DialogHeader> |
| 130 | <DialogTitle>Subscribe for more resources</DialogTitle> |
| 131 | <DialogDescription> |
| 132 | Get notified when new resources are added. |
| 133 | </DialogDescription> |
| 134 | </DialogHeader> |
| 135 | <EmailForm /> |
| 136 | <div className="h-px" /> |
| 137 | </DialogContent> |
| 138 | </Dialog> |
| 139 | ); |
| 140 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected