[RN] Add ExpandedLabel

This commit is contained in:
Bettenbuk Zoltan
2018-09-11 12:16:01 +02:00
committed by Saúl Ibarra Corretgé
parent d604cdfe27
commit e5cc732b72
27 changed files with 860 additions and 75 deletions

View File

@@ -12,6 +12,7 @@ export type Props = {
/**
* Abstract class for the {@code CircularLabel} component.
*/
export default class AbstractCircularLabel<P: Props> extends Component<P> {
export default class AbstractCircularLabel<P: Props, S: *>
extends Component<P, S> {
}