17 lines
297 B
TypeScript
17 lines
297 B
TypeScript
import React from "react";
|
|
|
|
const Home: React.FC = () => {
|
|
return (
|
|
<div
|
|
className="w-[100%] h-[96vh] px-4 flex flex-col items-center justify-center"
|
|
style={{ backgroundColor: "#F2F4F8" }}
|
|
>
|
|
<div>
|
|
Home Page
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Home;
|