Files
standardnotes-app-web/app/assets/javascripts/preferences/panes/Security.tsx

10 lines
276 B
TypeScript

import { FunctionComponent } from 'preact';
import { PreferencesPane } from '../components';
import { TwoFactorAuthWrapper } from './two-factor-auth';
export const Security: FunctionComponent = () => (
<PreferencesPane>
<TwoFactorAuthWrapper />
</PreferencesPane>
);