WireComponent
import WireComponent from "./wire-component";
import { TableData } from "../sample-data";
export default function Table1() {
const cfg = { data: new TableData() };
return <WireComponent component="wire.bsTable" config={cfg}>
<table className="table table-hover table-striped"></table>
</WireComponent>;
}Last updated