summaryrefslogtreecommitdiff
path: root/examples/subpath/src/components/Time.jsx
diff options
context:
space:
mode:
authorGravatar Dan Jutan <danjutan@gmail.com> 2022-09-06 10:33:08 -0400
committerGravatar GitHub <noreply@github.com> 2022-09-06 10:33:08 -0400
commita32bbe7289abf3f2cd896969ffc4bbb18e39177b (patch)
tree068da0f1bbde857322c783b807185505e56327dc /examples/subpath/src/components/Time.jsx
parent29f044267f854fd4586a893346722a1dbf7a0180 (diff)
downloadastro-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.jsx7
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>;
-}