({ message }: MapErrorProps)
| 8 | } |
| 9 | |
| 10 | export default function MapError({ message }: MapErrorProps) { |
| 11 | return ( |
| 12 | <div className="flex-1 flex items-center justify-center p-6"> |
| 13 | <Alert variant="destructive" className="max-w-md"> |
| 14 | <AlertCircle className="h-4 w-4" /> |
| 15 | <AlertTitle>地图加载错误</AlertTitle> |
| 16 | <AlertDescription>{message}</AlertDescription> |
| 17 | </Alert> |
| 18 | </div> |
| 19 | ) |
| 20 | } |
nothing calls this directly
no outgoing calls
no test coverage detected