diff options
author | 2022-09-06 10:33:08 -0400 | |
---|---|---|
committer | 2022-09-06 10:33:08 -0400 | |
commit | a32bbe7289abf3f2cd896969ffc4bbb18e39177b (patch) | |
tree | 068da0f1bbde857322c783b807185505e56327dc /examples/subpath/src/components/Time.jsx | |
parent | 29f044267f854fd4586a893346722a1dbf7a0180 (diff) | |
download | astro-a32bbe7289abf3f2cd896969ffc4bbb18e39177b.tar.gz astro-a32bbe7289abf3f2cd896969ffc4bbb18e39177b.tar.zst astro-a32bbe7289abf3f2cd896969ffc4bbb18e39177b.zip |
remove subpath and env-vars examples (#4606)
Diffstat (limited to 'examples/subpath/src/components/Time.jsx')
-rw-r--r-- | examples/subpath/src/components/Time.jsx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/examples/subpath/src/components/Time.jsx b/examples/subpath/src/components/Time.jsx deleted file mode 100644 index 9a89669cb..000000000 --- a/examples/subpath/src/components/Time.jsx +++ /dev/null @@ -1,7 +0,0 @@ -import React from 'react'; - -export default function () { - const date = new Date(); - const format = new Intl.DateTimeFormat('en-US'); - return <time>{format.format(date)}</time>; -} |