Files
page-assist/src/components/Dashboard/index.tsx

16 lines
332 B
TypeScript
Raw Normal View History

2023-04-10 23:38:26 +05:30
import React from "react";
import Empty from "./Empty";
export default function DashboardBoby() {
return (
<>
{/* align to center of the screen */}
<div className="mt-8 sm:mx-auto sm:w-full sm:max-w-md">
<div className=" px-4 py-8 sm:px-10">
<Empty />
</div>
</div>
</>
);
}