10 lines
244 B
TypeScript
10 lines
244 B
TypeScript
import { toDirective } from '../components/utils';
|
|
import {
|
|
PreferencesViewWrapper,
|
|
PreferencesWrapperProps,
|
|
} from './PreferencesView';
|
|
|
|
export const PreferencesDirective = toDirective<PreferencesWrapperProps>(
|
|
PreferencesViewWrapper
|
|
);
|