blob: dec53a3b5368b827bd12f9cf7e6a6e46b1ab70d3 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
import { exists } from 'libs/utils/exists'
import { View } from 'libs/mvc/view'
/*
* View representing the help page
* @class
* @extends {View}
*/
export class HelpView extends View {
constructor(serviceState) {
var el = document.createElement('p2b-help');
el.serviceState = serviceState;
super(el);
}
}