implement reorder/moving of sections between blocks

This commit is contained in:
Amruth Pillai
2020-07-05 13:34:04 +05:30
parent 202c7f5ad4
commit 03e1de1d14
8 changed files with 240 additions and 5 deletions

View File

@ -1,5 +1,5 @@
import React from "react";
import Profile from "../sections/Profile";
import Layout from "../sections/Layout";
import RightNavbar from "./RightNavbar";
import styles from "./RightSidebar.module.css";
@ -7,7 +7,7 @@ const RightSidebar = () => {
return (
<div className="flex">
<div className={styles.container}>
<Profile />
<Layout />
</div>
<RightNavbar />