18 lines
527 B
TypeScript
18 lines
527 B
TypeScript
import { FC, ReactElement } from 'react';
|
|||
|
|
|
||
|
|
export const Components: FC = (): ReactElement => {
|
||
|
|
return (
|
||
|
|
<main className="w-full px-[48px] py-[40px] flex flex-col gap-8">
|
||
|
|
{/* Dashboard Header */}
|
||
|
|
<header className="bg-white py-4 px-8 rounded-md shadow p-4">
|
||
|
|
<h1 className="text-p2 font-semibold">Data Akun</h1>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
{/* Transaction Table Section */}
|
||
|
|
<div className="flex justify-between gap-[40px] p-8 bg-white rounded-md"></div>
|
||
|
|
</main>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Components;
|