type Props = { mnemonicWords: string[]; identityStatus: string; password: string; recoverMnemonic: string; errorMessage: string | null; onPasswordChange(value: string): void; onRecoverMnemonicChange(value: string): void; onCreateDraft(): void; onUnlock(): void; onRecover(): void; }; export function MnemonicOnboardingScreen({ mnemonicWords, identityStatus, password, recoverMnemonic, errorMessage, onPasswordChange, onRecoverMnemonicChange, onCreateDraft, onUnlock, onRecover, }: Props) { return (

Ternent app shell

Bootstrap or unlock the local identity session before entering the app.

Identity status: {identityStatus}