Build a Color Picker App - Build a Color Picker App

Tell us what’s happening:

I exported the ColorPicker function component correctly. It still tells me to define and export it.

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8" />
    <title>Color Picker</title>
    <link rel="stylesheet" href="styles.css" />
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/18.3.1/umd/react.development.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/18.3.1/umd/react-dom.development.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/7.26.5/babel.min.js"></script>
    <script
      data-plugins="transform-modules-umd"
      type="text/babel"
      src="index.jsx"
    ></script>
</head>

<body>
    <div id="root"></div>
    <script
      data-plugins="transform-modules-umd"
      type="text/babel"
      data-presets="react"
      data-type="module"
    >
      import { ColorPicker } from './index.jsx';
      ReactDOM.createRoot(document.getElementById('root')).render(<ColorPicker />);
    </script>
</body>

</html>
/* file: styles.css */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

#color-picker-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #ffffff;
}

input[type="color"] {
    position: absolute;
    margin-top: 50px;
    height: 40px;
}
/* file: index.jsx */
const { useState } = React;

export function ColorPicker () {
  const [isColor, setIsColor] = useState("#ffffff")

  return (
    <div id= "color-picker-container">
      <input id= "color-input" type= "color" onChange= {}></input>
    </div>
  )
};

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36

Challenge Information:

Build a Color Picker App - Build a Color Picker App

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-color-picker/67bf4350777ac6ffdc027745.md at main · freeCodeCamp/freeCodeCamp · GitHub

SyntaxError: unknown: JSX attributes must only be assigned a non-empty expression.

In short: if you have errors, it can messes up with the tests.
I don´t recommend following the test errors in the console as a roadmap.
I think it´s better to have a concept first and try it out.

For example: You have an empty onChange attribute. How about finishing te script for this event first and then see what the tests say?