mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 21:01:34 +08:00

* Searchbar tests * Update search bar test page * Fix path to events test pages * Update text-view test pages
8 lines
321 B
TypeScript
8 lines
321 B
TypeScript
import { TestPageMainViewModel } from "./test-page-main-view-model";
|
|
import { WrapLayout } from "tns-core-modules/ui/layouts/wrap-layout";
|
|
|
|
export class SubMainPageViewModel extends TestPageMainViewModel {
|
|
constructor(container: WrapLayout, examples: Map<string, string>) {
|
|
super(container, examples);
|
|
}
|
|
} |