我正在尝试使用Lerna和React建立一个概念验证。
这是存储库:
https://github.com/SeanPlusPlus/lerna-react
到目前为止,如果你运行它,上面的工作原理:
git clone git@github.com:SeanPlusPlus/lerna-react.git
cd lerna-react
lerna bootstrap
cd packages/app
yarn start
在packages/app/src/App.js
我导入并呈现Headline
组件(请注意,我使用create-react-app
创建此目录):
import React, { Component } from 'react';
import logo from './logo.svg';
import Headline from 'headline';
import './App.css';
class App extends Component {
render() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<h1 className="App-title">Welcome to React</h1>
</header>
{ Headline }
</div>
);
}
}
export default App;
Headline
中的packages/headline/index.jsx
组件正在使用React.createElement
函数:
import React from 'react';
// const Headline = () => (
// <h1>Hello Lerna + React</h1>
// )
const Headline = React.createElement('div', null,
React.createElement('h1', null, 'Hello Lerna')
)
export default Headline
而且,正如您所看到的,返回JSX的函数已被注释掉。
...现在......如果我更新此文件以返回JSX:
import React from 'react';
const Headline = () => (
<h1>Hello Lerna + React</h1>
)
export default Headline
我的应用返回此错误:
Failed to compile.
../headline/index.jsx
Module parse failed: Unexpected token (4:2)
You may need an appropriate loader to handle this file type.
|
| const Headline = () => (
| <h1>Hello Lerna + React</h1>
| )
如何从Headline
组件导出JSX?
答案 0 :(得分:0)