aboutsummaryrefslogtreecommitdiff
path: root/test/formatters/samplecode/prettier/out.js
blob: ec9cfe46d7724edf137645a771c548b2fa40ab14 (plain)
1
2
3
4
5
6
7
8
9
10
function HelloWorld({
  greeting = "hello",
  greeted = '"World"',
  silent = false,
  onMouseOver,
}) {
  if (!greeting) {
    return null;
  }
}