mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
14 lines (13 loc) • 538 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Button2 = void 0;
const jsx_runtime_1 = require("react/jsx-runtime");
const Laji_1 = require("./Laji");
const Button2 = () => {
// const a = 'dd';
const handleClick = () => {
console.log('button2 clicked');
};
return ((0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsx)("button", { onClick: handleClick, children: "button2(v2)" }), (0, jsx_runtime_1.jsx)(Laji_1.LajiButton, {})] }));
};
exports.Button2 = Button2;