- implement tips on loading screen

- implement centralized sections
- removed react-spinner package
This commit is contained in:
Amruth Pillai
2020-07-06 10:02:17 +05:30
parent 65fc779d58
commit 6d3e5823fc
18 changed files with 111 additions and 52 deletions

19
src/data/leftSections.js Normal file
View File

@ -0,0 +1,19 @@
import { AiOutlineTwitter } from "react-icons/ai";
import { MdPerson } from "react-icons/md";
import Profile from "../components/builder/sections/Profile";
import SocialNetwork from "../components/builder/sections/SocialNetwork";
export default [
{
id: "profile",
name: "Profile",
icon: MdPerson,
component: Profile,
},
{
id: "social",
name: "Social Network",
icon: AiOutlineTwitter,
component: SocialNetwork,
},
];