All of my hooks cause the Invalid hook call error, this occurred after installing storybook using npx sb init
import React from 'react'
import { useSectionsQuery } from "../../graphql/generated";
export const Home: React.FC = () => {
const { data } = useSectionsQuery();
return (
<div className="bg-gray-200">
<div style={{ backgroundColor: "#4267B2" }} className="grid grid-rows-1">
<div className="flex justify-center">
{data?.sectionMany.map((section: any) => {
return <Card {...section} />;
})}
</div>
</div>
</div>
)
}