We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sorry, I'm new to flow, any chance someone can help me out here?
line 5 is storiesOf('NodeContextMenu', module).add('default', () => (
storiesOf('NodeContextMenu', module).add('default', () => (
import React from 'react'; import {storiesOf} from '@kadira/storybook'; import NodeContextMenu from './index'; storiesOf('NodeContextMenu', module).add('default', () => ( <NodeContextMenu> <NodeContextMenu.Item icon="trashbin-18">Delete</NodeContextMenu.Item> <NodeContextMenu.Item icon="lock-18">Lock</NodeContextMenu.Item> </NodeContextMenu> ));
The text was updated successfully, but these errors were encountered:
We skip flow on stories. Only on components.
Sorry, something went wrong.
You load stories in config.js and they are loaded through webpack.
config.js
So you have the option to add a webpack loaded with babel + flow.
No branches or pull requests
Sorry, I'm new to flow, any chance someone can help me out here?
line 5 is
storiesOf('NodeContextMenu', module).add('default', () => (
The text was updated successfully, but these errors were encountered: