generated from muhtadeetaron/nextjs-template
14 lines
184 B
TypeScript
14 lines
184 B
TypeScript
"use client";
|
|
import React from "react";
|
|
|
|
const page = () => {
|
|
return (
|
|
<>
|
|
<h1>Dashboard</h1>
|
|
<p>Welcome to your dashboard!</p>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default page;
|