- designing the builder

- designing the left navbar and sidebar
This commit is contained in:
Amruth Pillai
2020-07-04 22:41:28 +05:30
parent b42deb737c
commit 6f66181c17
18 changed files with 157 additions and 27 deletions

19
src/pages/app/builder.js Normal file
View File

@ -0,0 +1,19 @@
import React from "react";
import LeftSidebar from "../../components/builder/left/LeftSidebar";
import Wrapper from "../../components/shared/Wrapper";
const Builder = ({ id }) => {
return (
<Wrapper>
<div className="h-screen grid grid-cols-12">
<div className="col-span-3">
<LeftSidebar />
</div>
<div className="col-span-6"></div>
<div className="col-span-3"></div>
</div>
</Wrapper>
);
};
export default Builder;