* feat: integrate SNJS MFA with web * fix: create rudimentary typings file for qrcode.react * chore: lint fixes * fix: address PR feedback * fix: address PR feedback * fix: address PR feedback 2 * fix: replace spread props on TwoFactorAuthWrapper component * chore: change null check to undefined check
10 lines
259 B
TypeScript
10 lines
259 B
TypeScript
import { toDirective } from '../components/utils';
|
|
import {
|
|
PreferencesViewWrapper,
|
|
PreferencesViewWrapperProps,
|
|
} from './PreferencesViewWrapper';
|
|
|
|
export const PreferencesDirective = toDirective<PreferencesViewWrapperProps>(
|
|
PreferencesViewWrapper
|
|
);
|