Skip to content

Commit

Permalink
hotfix: fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ooooorobo committed Nov 10, 2021
1 parent d8b0b07 commit bb7dfbc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/stories/atoms/Select.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const Template = () => (
list={values}
idKeyName="key"
labelKeyName="value"
defaultText=""
onSelect={null}
selected={null}
/>
Expand Down
6 changes: 2 additions & 4 deletions src/stories/templates/GuestMain.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import GuestMainTemplate, {
GuestMainProps,
} from "@src/templates/GuestMain.template";
import GuestMainTemplate from "@src/templates/GuestMain.template";

export default {
title: "template",
component: GuestMainTemplate,
};

const Template = (args: GuestMainProps) => <GuestMainTemplate {...args} />;
const Template = () => <GuestMainTemplate />;

export const GuestMain = Template.bind({});

0 comments on commit bb7dfbc

Please sign in to comment.