Skip to content

Instantly share code, notes, and snippets.

@k1r0s
Created June 3, 2017 14:52
Show Gist options
  • Select an option

  • Save k1r0s/d51c7034595e11b48b81e35dd9e227ad to your computer and use it in GitHub Desktop.

Select an option

Save k1r0s/d51c7034595e11b48b81e35dd9e227ad to your computer and use it in GitHub Desktop.
Return a React component within an advice
import { AdvicePool, adviceMetadata, IMetadata } from 'kaop-ts'
import { Covfefe } from './covfefe-components'
export class Advices extends AdvicePool {
static blameRussia (@adviceMetadata meta: IMetadata) {
if(meta.exception) {
meta.result = <Covfefe/>
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment