mirror of
https://github.com/emo2007/block-accounting.git
synced 2025-04-12 08:56:28 +00:00
12 lines
250 B
TypeScript
12 lines
250 B
TypeScript
"use client";
|
|
import React from "react";
|
|
import { EmployeePage } from "./Employee";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="flex w-full h-screen items-center justify-center bg-white">
|
|
<EmployeePage />
|
|
</div>
|
|
);
|
|
}
|