aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorboard/components/tf-regex-group/demo/index.html
blob: efef84e0fccc42b385514d72df8d5748e7ebeae2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
 <head>
   <script src="../../../bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
   <link rel="import" href="../tf-regex-group.html">
 </head>
 <body>
  <style>
  .container {
    width: 255px;
    padding: 10px;
    border: 1px solid #3f51b5;
    border-radius: 5px;
  }
  :host {
    margin: 0px;
  }
  </style>
  <template id="page-template" is="dom-bind">
    <div class="container">
      <tf-regex-group regexes="{{regexes}}" id="demo"></tf-regex-group>
    </div>
    <p> Regexes:</p>
    <template is="dom-repeat" items="[[regexes]]">
      <p>"<span>[[item]]</span>"</p>
    </template>
  </template>
 </body>
 <script>

 </script>
</html>