| 13 | import { Hook, HookEffect } from './hooks' |
| 14 | |
| 15 | interface Component<P = {}, S = {}> extends ComponentLifecycle<P, S> { |
| 16 | _rendered: any |
| 17 | dom: any |
| 18 | } |
| 19 | |
| 20 | class Component<P, S> implements ComponentInst<P, S> { |
| 21 | public static defaultProps: {} |
nothing calls this directly
no outgoing calls
no test coverage detected