Hi I'm currently learning storybook and ran into this error when trying to setup.
I'm doing this in .mdx file and heres my code so far
import { Meta, Story } from '@storybook/addon-docs';
import { EyebrowAmountComponent } from './eyebrow-amount.component';
<Meta title="EyebrowAmount" component={EyebrowAmountComponent}/>
<Story name="Primary">
{{
props: {
eyebrow: "eyebrow title",
amount: "$12"
},
}}
</Story>
I tried googling but nothing similar came up. Can someone help me understand what I'm doing wrong much appreciated.