summaryrefslogtreecommitdiff
path: root/examples/remote-markdown
diff options
context:
space:
mode:
authorGravatar natemoo-re <natemoo-re@users.noreply.github.com> 2021-05-17 14:30:21 +0000
committerGravatar GitHub Actions <actions@github.com> 2021-05-17 14:30:21 +0000
commita2ae7018ca83cb3c19e803fb813e76ceed730679 (patch)
treee2b3d3be6648cc99371604e236678c2e12ac36cf /examples/remote-markdown
parentb3886c206f550b53227facd0480a94500ab2515d (diff)
downloadastro-a2ae7018ca83cb3c19e803fb813e76ceed730679.tar.gz
astro-a2ae7018ca83cb3c19e803fb813e76ceed730679.tar.zst
astro-a2ae7018ca83cb3c19e803fb813e76ceed730679.zip
[ci] yarn format
Diffstat (limited to 'examples/remote-markdown')
-rw-r--r--examples/remote-markdown/src/components/Yell.jsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/examples/remote-markdown/src/components/Yell.jsx b/examples/remote-markdown/src/components/Yell.jsx
index ae7d0d959..366d88a95 100644
--- a/examples/remote-markdown/src/components/Yell.jsx
+++ b/examples/remote-markdown/src/components/Yell.jsx
@@ -1,5 +1,10 @@
import { h, Fragment } from 'preact';
export default function Yell({ children }) {
- return children.filter(v => typeof v === 'string').join('').toUpperCase() + '!'
+ return (
+ children
+ .filter((v) => typeof v === 'string')
+ .join('')
+ .toUpperCase() + '!'
+ );
}