mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
24 lines
631 B
C++
24 lines
631 B
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.
|
||
|
*/
|
||
|
|
||
|
#include <fabric/uimanager/ComponentDescriptorFactory.h>
|
||
|
#include <fabric/uimanager/ComponentDescriptorRegistry.h>
|
||
|
|
||
|
namespace facebook {
|
||
|
namespace react {
|
||
|
|
||
|
/**
|
||
|
* This is a sample implementation. Each app should provide its own.
|
||
|
*/
|
||
|
SharedComponentDescriptorRegistry ComponentDescriptorFactory::buildRegistry() {
|
||
|
auto registry = std::make_shared<ComponentDescriptorRegistry>();
|
||
|
return registry;
|
||
|
}
|
||
|
|
||
|
} // namespace react
|
||
|
} // namespace facebook
|