Skip to content

Commit

Permalink
fix(flat-components): loginTitle stories props LoginPanelProps to `…
Browse files Browse the repository at this point in the history
…LoginTitleProps` (#1584)
  • Loading branch information
shunyue1320 committed Jun 23, 2022
1 parent 797186b commit 1eeb652
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Meta, Story } from "@storybook/react";
import React from "react";
import { LoginTitle } from ".";
import { LoginPanelProps } from "..";
import { LoginTitle, LoginTitleProps } from ".";

const storyMeta: Meta = {
title: "LoginPage/LoginTitle",
Expand All @@ -10,4 +9,4 @@ const storyMeta: Meta = {

export default storyMeta;

export const Overview: Story<LoginPanelProps> = props => <LoginTitle {...props} />;
export const Overview: Story<LoginTitleProps> = props => <LoginTitle {...props} />;

0 comments on commit 1eeb652

Please sign in to comment.