8 lines
191 B
JavaScript
8 lines
191 B
JavaScript
import { storiesOf } from '@storybook/react';
|
|
import ChatWindow from './ChatWindow';
|
|
|
|
storiesOf('Assist', module)
|
|
.add('ChatWindow', () => (
|
|
<ChatWindow userId="test@test.com" />
|
|
))
|
|
|