Hoping someone has some advice on what I'm doing wrong, but I am struggling with something as simple as the onChange event on the Tabs control.
From the documentation and Storybook, I would expect this line to write the onChange event to the console:
<Tabs className="mt-4" type={"underline"} onChange={(evt) => { console.log(evt); }}>
But nothing happens, as if the onChange is never called. I also tried referring to another function with no luck.