如何在 meteor-react 中使用 bootstrap 样式?

How to use bootstrap style in meteor-react?

我使用命令安装了 bootstrap 包:

 meteor add twbs:bootstrap

我做了一些示例代码,但它不起作用。 Bootstrap 样式未应用于按钮。

App.jsx

import React from 'react';

export default class App extends React.Component {
  render() {
    return (
      <button class="btn btn-info">Button</button>
    );
  }
}

你能帮帮我吗?谢谢。

您应该使用 className 属性而不是 class。