'use client';
import { useEffect, useState, Suspense } from 'react'
import Search from './url'
import Header from '../components/Header'
interface TrackData {
sender: string;
receiver: string;
express: boolean;
signature: boolean;
abandon: boolean;
delivered: boolean
country_code: string;
handler: string;
history: { info: string, location: string, time: string }[];
}
export default function Track() {
return (
<>