使用列的反应bulma结果导致意外的令牌
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用列的反应bulma结果导致意外的令牌相关的知识,希望对你有一定的参考价值。
我有一个react组件试图渲染两列:
render() {
return (
<Section>
<Container>
<Columns>
<Columns.Column size={6}>
<SearchCard />
</Columns.Column>
<Columns.Column size={6}>
<DocumentCard/>
</Columns.Column>
</Columns>
</Container>
</Section>
)
}
但是这会出现以下错误:
SyntaxError:...node_modules/react-bulma-components/src/components/columns/components/column.js: Unexpected token (26:2)
24 | ...props
25 | }) => (
> 26 | <Element
| ^
27 | {...props}
28 | className={classNames(className, 'column', {
29 | [`is-${size}`]: size,
我已经尝试遵循以下建议:放火部分,然后是容器,然后是列。但这是一个令人困惑的错误弹出窗口。我不明白。有人可以解释吗?
答案
查看自述文件的安装说明以上是关于使用列的反应bulma结果导致意外的令牌的主要内容,如果未能解决你的问题,请参考以下文章