24 lines
470 B
TypeScript
24 lines
470 B
TypeScript
import { makeElement } from "z-makeelement";
|
|
|
|
export function HeaderAndContent(title: string, content: string): HTMLElement {
|
|
return makeElement({
|
|
tag: "tr",
|
|
children: [
|
|
makeElement({
|
|
tag: "td",
|
|
children: makeElement({
|
|
tag: "h5",
|
|
text: title,
|
|
}),
|
|
}),
|
|
makeElement({
|
|
tag: "td",
|
|
children: makeElement({
|
|
tag: "p",
|
|
text: content,
|
|
}),
|
|
}),
|
|
],
|
|
});
|
|
}
|