mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:51:07 +08:00
14 lines
375 B
JavaScript
14 lines
375 B
JavaScript
import React from 'react';
|
|
import { storiesOf } from '@storybook/react'
|
|
import { setupGraphiQL } from '../src'
|
|
|
|
// setup the graphiql helper which can be used with the add method later
|
|
const graphiql = setupGraphiQL({ url: 'http://localhost:3000/graphql' });
|
|
|
|
storiesOf('GraphQL Demo', module)
|
|
.add('get user info', graphiql(`{
|
|
user(id: "1") {
|
|
name
|
|
}
|
|
}`));
|