Skip to content

Commit

Permalink
build: init transflow graph
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Dec 27, 2021
1 parent 690ad3d commit d63dd04
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
:host {
display: block;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { Component, Host, h } from '@stencil/core';

@Component({
tag: 'graph-transflow',
styleUrl: 'graph-transflow.css',
shadow: true,
})
export class GraphTransflow {

render() {
return (
<Host>
<slot></slot>
</Host>
);
}

}

0 comments on commit d63dd04

Please sign in to comment.