Skip to content

Commit

Permalink
admin functionality made dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
Mandar007007 committed May 13, 2024
1 parent ade738e commit bb8400f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/pages/Admin/Components/Profile/Profile.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React, { useState } from "react";
import React, { useEffect, useState } from "react";
import EditIcon from "@material-ui/icons/Edit";
import CloseIcon from "@material-ui/icons/Close";
import style from "./profile.module.scss";

export function Profile() {
const [name, setName] = useState("Super Admin Name");
const [email, setEmail] = useState("[email protected]");
const [phone, setPhone] = useState("+91-1234567891");
const [phone, setPhone] = useState("+91-123456789");
const [edit, setEdit] = useState(false);

useEffect(() => {
Expand Down

0 comments on commit bb8400f

Please sign in to comment.