Files
standardnotes-app-web/app/assets/javascripts/preferences/panes/account/changeEmail/ChangeEmailSuccess.tsx
2021-09-13 10:01:32 +02:00

13 lines
404 B
TypeScript

import { FunctionalComponent } from 'preact';
export const ChangeEmailSuccess: FunctionalComponent = () => {
return (
<>
<div className={'sk-label sk-bold info'}>Your email has been successfully changed.</div>
<p className={'sk-p'}>
Please ensure you are running the latest version of Standard Notes on all platforms to ensure maximum compatibility.
</p>
</>
);
};