diff options
author | 2021-08-17 15:25:09 -0700 | |
---|---|---|
committer | 2021-08-17 15:25:09 -0700 | |
commit | 7a1ca0bc0cb93f62daedfb4d5dee1bd22020a9d2 (patch) | |
tree | c4a7ff448cbd9b4976b8071b2e5fd49732d18840 /demos/hello-next/components/Title.tsx | |
parent | ae01e9b98d481332236976344fa0386bafa82f53 (diff) | |
download | bun-7a1ca0bc0cb93f62daedfb4d5dee1bd22020a9d2.tar.gz bun-7a1ca0bc0cb93f62daedfb4d5dee1bd22020a9d2.tar.zst bun-7a1ca0bc0cb93f62daedfb4d5dee1bd22020a9d2.zip |
add React.Children.only pollyfill
Former-commit-id: e140319390f56979487444529ca49a677264ad57
Diffstat (limited to 'demos/hello-next/components/Title.tsx')
-rw-r--r-- | demos/hello-next/components/Title.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/demos/hello-next/components/Title.tsx b/demos/hello-next/components/Title.tsx new file mode 100644 index 000000000..10636164f --- /dev/null +++ b/demos/hello-next/components/Title.tsx @@ -0,0 +1,3 @@ +export default function Title() { + return <h1>Hello</h1>; +} |