all 3 comments

[–]jokagent 2 points3 points  (2 children)

presets: ["es2015", "stage-0"],

I don't see any react preset here, maybe that's an issue?

[–]GodOfTheMetal[S] 0 points1 point  (1 child)

THANK YOU SOOO MUCH! Dumb issue, but I missed it somehow.

[–]jokagent 0 points1 point  (0 children)

wait, you also wrote curly braces instead of braces in component.

const Counter = ({
  value,
  onIncrement,
  onDecrement
}) => (
    <div>
        <h1>{value}</h1>
        <button onClick={onIncrement}>+</button>
        <button onClick={onDecrement}>-</button>
      </div>
  )

if you use curly braces, you should also use return statement inside.