mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
32 lines
895 B
JavaScript
32 lines
895 B
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
import NoticeTable from './notice-table';
|
|
|
|
export default { title: 'NoticeTable' };
|
|
|
|
const notices = [
|
|
{ type: 'error', line: 3, message: 'This must be fixed now!' },
|
|
{ type: 'warning', line: 10, message: 'This is a small nitpick' },
|
|
{
|
|
type: 'warning',
|
|
line: 40,
|
|
message: "Another small warning because you didn't the right thing",
|
|
},
|
|
{
|
|
type: 'error',
|
|
line: 3212,
|
|
message:
|
|
'This is a really, really, really, long error message and I hope it makes sense ' +
|
|
"because it's just made up of random thoughts and things. But, don't let that fool you " +
|
|
"it's really important and you should fix it as soon as possible!",
|
|
},
|
|
];
|
|
|
|
export const _default = () => (
|
|
<NoticeTable
|
|
notices={notices}
|
|
onClick={n => window.alert(n.message)}
|
|
onVisibilityToggle={v => console.log('Visible?', v)}
|
|
/>
|
|
);
|