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.
23 lines
549 B
23 lines
549 B
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} />;
|
|
};
|
|
|