19 lines
440 B
JavaScript
19 lines
440 B
JavaScript
import { useEffect } from 'react'
|
|
import { useDispatch } from 'react-redux'
|
|
import { setPageTitle } from '../../features/common/headerSlice'
|
|
import ProfileSettings from '../../features/settings/profilesettings'
|
|
|
|
function InternalPage(){
|
|
const dispatch = useDispatch()
|
|
|
|
useEffect(() => {
|
|
dispatch(setPageTitle({ title : "Settings"}))
|
|
}, [])
|
|
|
|
|
|
return(
|
|
<ProfileSettings />
|
|
)
|
|
}
|
|
|
|
export default InternalPage |