11 lines
255 B
TypeScript
11 lines
255 B
TypeScript
import { DashboardShell } from "@/components/dashboard-shell";
|
|
import { TesterDashboard } from "@/components/tester-dashboard";
|
|
|
|
export default function TesterPage() {
|
|
return (
|
|
<DashboardShell>
|
|
<TesterDashboard />
|
|
</DashboardShell>
|
|
);
|
|
}
|