mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 20:09:11 +00:00
14 lines
331 B
TypeScript
14 lines
331 B
TypeScript
import * as React from 'react';
|
|
import { roleCategory } from '../../fixtures/storyData';
|
|
import { RoleSearch } from './RoleSearch';
|
|
|
|
export default {
|
|
title: 'Molecules/Role Search',
|
|
component: RoleSearch,
|
|
args: {
|
|
roles: roleCategory,
|
|
searchTerm: '',
|
|
},
|
|
};
|
|
|
|
export const Search = (args) => <RoleSearch {...args} />;
|