12 lines
242 B
TypeScript
12 lines
242 B
TypeScript
import { makeElement } from "../htmlUtils";
|
|
|
|
export function Option(label: string, value: string): HTMLElement {
|
|
return makeElement({
|
|
tag: "option",
|
|
text: label,
|
|
attributes: {
|
|
label: label,
|
|
value: value,
|
|
}
|
|
})
|
|
} |