summaryrefslogtreecommitdiff
path: root/examples/remote-markdown/src/components/Yell.jsx
blob: 366d88a9524e36ecca32747a207c5140ad52d3ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { h, Fragment } from 'preact';

export default function Yell({ children }) {
  return (
    children
      .filter((v) => typeof v === 'string')
      .join('')
      .toUpperCase() + '!'
  );
}