mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
8 lines
209 B
TypeScript
8 lines
209 B
TypeScript
import { Widget } from "../widget";
|
|
import { ControlPanel } from "../ui/control_panel";
|
|
|
|
export class BaseView extends Widget<{ info: any }, {}> {
|
|
template = "web.base_view";
|
|
widgets = { ControlPanel };
|
|
}
|