assistant-todo/src/app/task/drag/page.tsx

12 lines
443 B
TypeScript
Raw Normal View History

2025-03-19 06:59:45 -04:00
/**
* The .js, .jsx, or .tsx file extensions can be used for Pages.
* A page is always the leaf of the route subtree.
* A page.js file is required to make a route segment publicly accessible.
* Pages are Server Components by default, but can be set to a Client Component.
* Pages can fetch data. View the Data Fetching section for more information.
* @constructor
*/
export default function Page() {
return <p>Dashboard Page</p>;
}