You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
549 B
24 lines
549 B
3 years ago
|
import React from 'react';
|
||
|
import testData from '../../../../../.storybook/test-data';
|
||
|
import CustomContentSearch from './custom-content-search';
|
||
|
|
||
|
export default {
|
||
|
title: 'Pages/Settings/NetworksTab/CustomContentSearch',
|
||
|
id: __filename,
|
||
|
argTypes: {
|
||
|
error: {
|
||
|
control: 'text',
|
||
|
},
|
||
|
searchQueryInput: {
|
||
|
control: 'text',
|
||
|
},
|
||
|
onSearch: {
|
||
|
action: 'onSearch',
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const CustomContentSearchComponent = (args) => {
|
||
|
return <CustomContentSearch {...args} networksList={testData.networkList} />;
|
||
|
};
|