mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
90f8fe6f55
This PR adds the jsx-runtime and jsx-dev-runtime modules for the JSX Babel Plugin. WWW still relies on jsx/jsxs/jsxDEV from the "react" module, so once we refactor the code to point to the runtime modules we will remove jsx/jsxs/jsxDEV from the "react" module.
10 lines
257 B
JavaScript
10 lines
257 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
export {Fragment, jsx, jsxs} from './src/jsx/ReactJSX';
|