import React from 'react'; import JwtUrlForm from '.'; export default { title: 'Components/Institutional/JwtUrlForm', component: JwtUrlForm, args: { jwtList: ['jwt1', 'jwt2', 'jwt3'], currentJwt: 'jwt1', urlInputText: 'url', apiUrl: 'https://apiurl.io/v1', jwtInputText: 'some input text', onJwtChange: () => { /**/ }, onUrlChange: () => { /**/ }, }, }; export const DefaultStory = (args) => ; DefaultStory.storyName = 'JwtUrlForm';