INNER CODE UNIT · JavaScript

AdminLayout

hasan-py/Hayroo · client/src/components/admin/layout/index.js:7

const AdminLayout = ({ children }) => {
  return (
    <Fragment>
      <AdminNavber />
      <section className="flex bg-gray-100">
        <AdminSidebar />
        <div className="w-full md:w-11/12 h-full">
          {/* All Children pass from here */}
          {children}
        </div>
      </section>
      <AdminFooter />
    </Fragment>
  );
};

export default AdminLayout;

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…