DocSpace-buildtools/packages/components/input-phone/input-phone.stories.js
2022-09-08 12:25:53 +05:00

16 lines
269 B
JavaScript

import { InputPhone } from ".";
export default {
title: "Components/InputPhone",
component: InputPhone,
};
const Template = (args) => <InputPhone {...args} />;
export const Default = Template.bind({});
Default.args = {
country: "ru",
enableSearch: true,
};