Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@StefanNieuwenhuis
Last active April 11, 2019 13:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StefanNieuwenhuis/d78da80c23138ea27360bc29b40716f4 to your computer and use it in GitHub Desktop.
Save StefanNieuwenhuis/d78da80c23138ea27360bc29b40716f4 to your computer and use it in GitHub Desktop.
import { Component } from '@stencil/core';
@Component({
tag: 'my-component',
styleUrl: 'my-component.css',
shadow: true
})
export class MyComponent {
render() {
return <div class="overlay">
<div class="modal-window">
<div class="modal-window__content">
<slot></slot>
</div>
</div>
</div>;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment