10 lines
276 B
TypeScript
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>
|
|
);
|