fix undefined and other build errors

This commit is contained in:
Arjun Patel
2022-02-09 22:41:36 -08:00
parent 294873b69d
commit 85ef837ec6
2 changed files with 17 additions and 34 deletions
@@ -1,21 +0,0 @@
import Header from "../v2/Header";
import Sidebar from "../v2/Sidebar";
import React from "react";
export default function getDynamicMeLayout(page: React.ReactElement) {
console.log("rendering layout");
return (
<div className="flex flex-col">
<Header />
<div className="flex-1 flex flex-row items-stretch">
<Sidebar />
<div className="flex-1 flex flex-col px-20 justify-start items-stretch container mx-auto">
{page}
</div>
</div>
</div>
);
}