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