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