This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-demo/src/components/PreferenceView.ts
2021-05-14 19:58:34 +08:00

14 lines
294 B
TypeScript

import { hlayout, HLayout, layoutConfig, ViewComponent } from "doric";
@ViewComponent
export class PreferenceView extends HLayout {
constructor() {
super()
hlayout(
[],
{
layoutConfig: layoutConfig(),
}).in(this)
}
}