mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-08 22:45:25 +00:00
26 lines
764 B
JavaScript
26 lines
764 B
JavaScript
import React from 'react';
|
|
|
|
const NetworkError = ({ onClose }) => {
|
|
return (
|
|
<div className="max-w-md w-full bg-white shadow-lg rounded-lg pointer-events-auto flex bg-red-100">
|
|
<div className="flex-1 w-0 p-4">
|
|
<div className="flex items-start">
|
|
<div className="ml-3 flex-1">
|
|
<p className="text-sm font-medium text-red-800">Network Error</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="flex">
|
|
<button
|
|
onClick={onClose}
|
|
className="w-full border border-transparent rounded-none rounded-r-lg p-4 flex items-center justify-center text-sm font-medium focus:outline-none"
|
|
>
|
|
Close
|
|
</button>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default NetworkError;
|