From 260c156b8fa7de9e1935163cf53cd0c195bc24cf Mon Sep 17 00:00:00 2001 From: Seth Trowbridge Date: Sat, 13 May 2023 14:06:28 -0400 Subject: [PATCH] starting meta tags other than title --- example/app.tsx | 22 ++++++++++++++++-- example/deno.jsonc | 4 ++-- lib/iso.tsx | 58 ++++++++++++++++++++++++++++++++++++++-------- server.tsx | 7 ++++++ 4 files changed, 77 insertions(+), 14 deletions(-) diff --git a/example/app.tsx b/example/app.tsx index 8a7cd9e..558a4c6 100644 --- a/example/app.tsx +++ b/example/app.tsx @@ -1,12 +1,30 @@ import React from "react"; import * as Iso from "@eno/iso"; +/* +const delay =(inMS:number)=> +{ + return new Promise((accept)=> + { + setTimeout(()=> + { + accept({default:()=> + { + return

loooooool

; + }}); + }, inMS); + }); +} +const LOL = React.lazy(()=>delay(3000)); +*/ + const Comp = React.lazy(()=>import("./deep/component.tsx")); + export default ()=> { return
- +