UNPKG

@teambit/harmony

Version:
17 lines (12 loc) 290 B
import ReactAspect from './react.aspect'; import { UIRuntime } from '../ui/ui.aspect'; export class ReactUI { static runtime = UIRuntime; render() { return 'rendering something!'; } static async provider() { return new ReactUI(); } } ReactAspect.addRuntime(ReactUI);