import { Components } from "gd-sprest-bs";// Create the buttonlet el = document.querySelector("#btn");let btn = Components.Button({ el: el, type: Components.ButtonTypes.OutlineSuccess, isLarge: true, onClick: function(ev) { alert("The button was clicked."); }}); Copy
import { Components } from "gd-sprest-bs";// Create the buttonlet el = document.querySelector("#btn");let btn = Components.Button({ el: el, type: Components.ButtonTypes.OutlineSuccess, isLarge: true, onClick: function(ev) { alert("The button was clicked."); }});
Optional
Generated using TypeDoc
Button