-
Notifications
You must be signed in to change notification settings - Fork 317
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mandar007007
committed
May 13, 2024
1 parent
ade738e
commit bb8400f
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(() => { | ||
|