18 lines
418 B
TypeScript
18 lines
418 B
TypeScript
'use client';
|
|
|
|
export default function AuditTestPage() {
|
|
return (
|
|
<div className="p-8">
|
|
<h1 className="text-3xl font-bold">Audit Test Page</h1>
|
|
<p className="mt-4">If you can see this, routing is working!</p>
|
|
<button
|
|
onClick={() => alert('Button works!')}
|
|
className="mt-4 px-4 py-2 bg-blue-500 text-white rounded"
|
|
>
|
|
Test Button
|
|
</button>
|
|
</div>
|
|
);
|
|
}
|
|
|