diff options
Diffstat (limited to 'examples/remote-markdown/src/components/Yell.jsx')
-rw-r--r-- | examples/remote-markdown/src/components/Yell.jsx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/examples/remote-markdown/src/components/Yell.jsx b/examples/remote-markdown/src/components/Yell.jsx deleted file mode 100644 index 366d88a95..000000000 --- a/examples/remote-markdown/src/components/Yell.jsx +++ /dev/null @@ -1,10 +0,0 @@ -import { h, Fragment } from 'preact'; - -export default function Yell({ children }) { - return ( - children - .filter((v) => typeof v === 'string') - .join('') - .toUpperCase() + '!' - ); -} |