import withPageTitle from 'HOCs/withPageTitle'; import Settings from './Settings'; import ChangePassword from './ChangePassword'; import styles from './profileSettings.css'; import Api from './Api'; import OptOut from './OptOut'; import Licenses from './Licenses'; @withPageTitle('Account - OpenReplay Preferences') export default class ProfileSettings extends React.PureComponent { render() { return (

{ 'Profile' }

{ 'Your email address is your identity on OpenReplay and is used to login.' }

{ 'Change Password' }

{ 'Updating your password from time to time enhances your account’s security.' }

{ 'Opt out' }

{/*
{ 'Your API key gives you access to an extra set of services.' }
*/}

{ 'Organization API Key' }

{ 'Your API key gives you access to an extra set of services.' }

{ 'Opt Out' }

{/*
{ 'Your API key gives you access to an extra set of services.' }
*/}

{ 'Licenses' }

{/*
{ 'Your API key gives you access to an extra set of services.' }
*/}
); } }