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.
 
 
 
 

14 lines
277 B

  1. import './interview.scss';
  2. import {createInterview} from "./InterviewComponent";
  3. export default {
  4. title: 'Sections/Interview',
  5. }
  6. const Template = ({...args}) => {
  7. return createInterview({...args});
  8. };
  9. export const Interview = Template.bind({});
  10. Interview.args = {};