From 496b26dffeec07cdf85b0f44363761ea1b8472bb Mon Sep 17 00:00:00 2001 From: Nulo Date: Thu, 9 Mar 2023 11:15:24 -0300 Subject: [PATCH] time element --- html.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/html.ts b/html.ts index e308685..e265857 100644 --- a/html.ts +++ b/html.ts @@ -48,6 +48,7 @@ export const nav = basicElement("nav"); export const header = basicElement("header"); export const main = basicElement("main"); export const section = basicElement("section"); +export const time = basicElement("time"); // TODO: actually escape const escapeHTML = (string: string) => string;