feat: add changing email (#634)

This commit is contained in:
Karol Sójko
2021-09-13 10:01:32 +02:00
committed by GitHub
parent b0ed19d6a3
commit 6afce84324
5 changed files with 239 additions and 81 deletions

View File

@@ -0,0 +1,12 @@
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>
</>
);
};