EverydayTech Platform - Developer Reference
Complete Source Code Documentation - All Applications
Loading...
Searching...
No Matches
page.tsx
Go to the documentation of this file.
1"use client";
2
3export default function TestPage() {
4 return (
5 <div className="p-8">
6 <h1 className="text-2xl font-bold mb-4">Test Page</h1>
7 <p>This is a simple test page under the app router.</p>
8 </div>
9 );
10}