Files
shorturl-analytics/app/ip-test/page.tsx
2025-04-02 22:23:49 +08:00

10 lines
278 B
TypeScript

import IpLocationTest from '../components/ipLocationTest';
export default function IpTestPage() {
return (
<div className="container mx-auto p-4 max-w-4xl">
<h1 className="text-2xl font-bold mb-6">IP to Location Test</h1>
<IpLocationTest />
</div>
);
}