mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
596f17efda
Summary: This diff initializes Fabric C++ UIManager code from java, it also registers android RootViews inside C++. Reviewed By: shergin Differential Revision: D8878148 fbshipit-source-id: 8b7924f715b135eda37bb2683206d3e321a2b7b2
15 lines
311 B
Java
15 lines
311 B
Java
/**
|
|
* Copyright (c) 2014-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.
|
|
*/
|
|
|
|
package com.facebook.react.fabric;
|
|
|
|
public interface FabricBinder<T extends FabricBinding> {
|
|
|
|
void setBinding(T binding);
|
|
|
|
}
|