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