如何在ReactJs中使用Bootstrap

2025-03-13 08:10:50
推荐回答(1个)
回答1:

import {Button} from 'react-bootstrap';
import {BootstrapTable, TableHeaderColumn} from 'react-bootstrap-table';
import React from 'react';
import {render} from 'react-dom';
import TableList from './table.js';

class MianBan extends React.Component{
//title
constructor(...args){
super(...args);
this.state = {
open: true
};
}

render() {
return (




Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid.
Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident.


);
}
}