You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just cloned the project, ran npm i && npm run rollup
(!) Plugin typescript: @rollup/plugin-typescript TS4023: Exported variable 'LoggedOut' has or is using name 'PageProps' from external module "/Users/maximelechevallier/Documents/MyProjects/template-react-component-library/src/stories/Page" but cannot be named.
src/stories/Page.stories.tsx: (20:14)
20 export const LoggedOut = Template.bind({});
The text was updated successfully, but these errors were encountered:
You will also notice that it creates a stories directory in your src directory. This directory is full of pre-built templates for you to use as an example of how to create your own stories. I recommend you don't delete these until you become familiar with Storybook and how to write your own stories, having them close by will be very handy.
That means storybook creates the files that are causing the problems when it is initially installed.
You can just delete ./src/stories once you no longer need them.
Just cloned the project, ran
npm i && npm run rollup
The text was updated successfully, but these errors were encountered: