Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- import {createSearchButton} from "./SearchButtonComponent";
-
- export default {
- title: 'Atoms/Search Button',
- args: {}
- }
-
- const Template = ({...args}) => {
- return createSearchButton({...args});
- };
-
- export const SearchButton = Template.bind({});
- SearchButton.args = {};
|