Skip to content

Instantly share code, notes, and snippets.

@43081j
Created March 7, 2018 20:54
Show Gist options
  • Save 43081j/c622316d231323401c933c8c910e5316 to your computer and use it in GitHub Desktop.
Save 43081j/c622316d231323401c933c8c910e5316 to your computer and use it in GitHub Desktop.
import { Component, Prop } from '@stencil/core';
@Component({
tag: 'x-foo',
shadow: true
})
export class XFoo {
@Prop()
public flag: string = 'foo';
render() {
if (this.flag === 'foo') {
return (<slot name="foo" />);
} else {
return (<slot name="bar" />);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment