14 lines
343 B
TypeScript
14 lines
343 B
TypeScript
import MapSearch from '@/components/MapSearch';
|
|
|
|
export default function MapsPage() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<div>
|
|
<h1 className="text-2xl text-ink mb-1">Maps</h1>
|
|
<p className="text-sm text-ink-muted">Search for a map to see when it was played.</p>
|
|
</div>
|
|
<MapSearch />
|
|
</div>
|
|
);
|
|
}
|