import React from 'react'; import { Button } from '../ui/Button'; export const NoInternet: React.FC = () => { const handleRetry = () => { window.location.reload(); }; return (
No Internet

No Internet Connection

Please check your internet connection and try again.

); };