React suite error: component is not exported from 'rsuite'

React suite error: component is not exported from 'rsuite'

我刚刚发现了有关 React 套件的信息,它真的很好,但我无法弄清楚这个错误,该错误表示组件未从 rsuite 导出每个示例“尝试导入错误:'Card' 未从 [导出=16=].'这种情况经常发生,比如组件在哪里,如果不是来自 rsuite,它的文档真的很糟糕,它没有多大帮助

    import "./App.css";
import "rsuite/dist/styles/rsuite-default.css";
import { Row, Col, Card } from "rsuite";

const styles = {
  padding: 20,
  textAlign: "center",
};

function App() {
  return (
    <div className='App' style={styles}>
      <Row>
        <Col md={6} sm={12}>
          <Card />
        </Col>
        <Col md={6} sm={12}>
          <Card />
        </Col>
        <Col md={6} sm={12}>
          <Card />
        </Col>
        <Col md={6} sm={12}>
          <Card />
        </Col>
      </Row>
    </div>
  );
}

export default App;

我不知道为什么会这样,尝试查找 youtube,google 或任何东西,但它的社区似乎没有那么大我不明白而且我有过这与许多其他组件。任何帮助将不胜感激我真的很想使用这个库它看起来非常好

rsuite库中没有Card组件,可以通过组合Panel组件实现

https://rsuitejs.com/components/panel

另外,组件的导入在每个组件的文档开头都有说明。