mirror of
https://github.com/status-im/react-native.git
synced 2025-01-17 21:11:45 +00:00
81bdd36204
Summary: RCTParagraphComponentView is a UIView which can render text using TextLayoutManager. Reviewed By: mdvacca Differential Revision: D7751853 fbshipit-source-id: e6ee9a0f989cdf6e878390d37dbcf8a11ef90bf4
22 lines
414 B
Objective-C
22 lines
414 B
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <React/RCTViewComponentView.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* UIView class for <Paragraph> component.
|
|
*/
|
|
@interface RCTParagraphComponentView : RCTViewComponentView
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|