Have you tried doing what the error says? Replacing `class` with `className` as react requires?
– mousetailJun 20 '22 at 12:40
In HTML there is an attribute `class`. If you wish to reference that attribute directly in javascript, use the reference `className`.
– RouninJun 20 '22 at 12:41
In React's JSX part you're writing "HTML" but directly inside a script. And `class` is a reserved word / keyword. Therefore in JSX you use [`className`](https://reactjs.org/docs/dom-elements.html#classname) instead, exactly like the warning says.
– Jun 20 '22 at 12:41