Created
June 3, 2017 14:52
-
-
Save k1r0s/d51c7034595e11b48b81e35dd9e227ad to your computer and use it in GitHub Desktop.
Return a React component within an advice
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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