lifetracker/apps/web/app/dashboard/day/page.tsx

10 lines
166 B
TypeScript

import React from "react";
export default async function MainDayPage() {
return (
<div>
Hello from a logged in page!
</div>
);
}