9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
import LoggingView from "../views/loggingView";
|
|
|
|
export default function LoggingPage() {
|
|
return (
|
|
<div className="mx-auto flex w-full max-w-7xl">
|
|
<LoggingView />
|
|
</div>
|
|
);
|
|
} |