Created
October 17, 2019 10:30
-
-
Save phanshiwen/c85cc1e76e125f1ea2ee253285f2ba12 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
Object.defineProperty(exports, "__esModule", { | |
value: true | |
}); | |
exports.default = void 0; | |
var _react = _interopRequireDefault(require("react")); | |
function _interopRequireDefault(obj) { | |
return obj && obj.__esModule ? obj : { default: obj }; | |
} | |
var MyComponent = function MyComponent() { | |
return _react.default.createElement("div", null, "This is remote component"); | |
}; | |
var _default = MyComponent; | |
exports.default = _default; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment