This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/iOS/Pod/Classes/DoricComponent.m
2019-07-29 15:12:42 +08:00

20 lines
304 B
Objective-C

//
// DoricComponent.m
// Doric
//
// Created by pengfei.zhou on 2019/7/29.
//
#import "DoricComponent.h"
@implementation DoricComponent
- (instancetype)initWithContext:(DoricContext *)doricContext {
if(self = [super init]){
_doricContext = doricContext;
}
return self;
}
@end