9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
import { makeElement } from "../htmlUtils";
|
|
|
|
export function ListItem(children: Element[] | Element): HTMLElement {
|
|
return makeElement({
|
|
tag: "li",
|
|
children: children,
|
|
});
|
|
}
|