JSFiddle - React, Tailwind, and code Playground
by parksd
JavaScript
function createButton() {
// 버튼 요소 생성
const button = document.createElement('a');
button.id = 'story_point';
button.class = 'aui-button aui-button-primary aui-style create-issue';
button.title = 'Calculate & write story point';
button.innerText = "Story Point";
// 클릭 이벤트 핸들러 등록
button.addEventListener('click', function() {
alert('버튼을 클릭했습니다!');
});
return button;
}
console.log(createButton())