chore: move hooks to experimental

This commit is contained in:
Evan You 2018-10-28 17:47:22 -04:00
parent a6a571f973
commit 98782b326a
2 changed files with 3 additions and 1 deletions

View File

@ -19,7 +19,9 @@ export { KeepAlive } from './optional/keepAlive'
export { mixins } from './optional/mixins'
export { EventEmitter } from './optional/eventEmitter'
export { memoize } from './optional/memoize'
export { withHooks, useState, useEffect } from './optional/hooks'
// Experimental APIs
export { withHooks, useState, useEffect } from './experimental/hooks'
// flags & types
export { ComponentType, ComponentClass, FunctionalComponent } from './component'