import moment from "moment" import { useEffect, useState } from "react" import { useDispatch, useSelector } from "react-redux" import TitleCard from "../../../components/Cards/TitleCard" import { showNotification } from '../../common/headerSlice' import InputText from '../../../components/Input/InputText' import TextAreaInput from '../../../components/Input/TextAreaInput' import ToogleInput from '../../../components/Input/ToogleInput' function ProfileSettings(){ const dispatch = useDispatch() // Call API to update profile settings changes const updateProfile = () => { dispatch(showNotification({message : "Profile Updated", status : 1})) } const updateFormValue = ({updateType, value}) => { console.log(updateType) } return( <>
) } export default ProfileSettings