import React from 'react'; import { withCurrentUser } from '@webapp/redux/reducers/user'; import ChangePasswordForm from './ChangePasswordForm'; function Security(props: ShamefulAny) { const { currentUser } = props; if (!currentUser) return <>; return ( <> ); } export default withCurrentUser(Security);