-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0e79c30
commit b221aee
Showing
5 changed files
with
25 additions
and
21 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import type { Meta, StoryObj } from "@storybook/react"; | ||
|
||
import { LoginCard } from "./LoginCard"; | ||
|
||
const meta: Meta<typeof LoginCard> = { | ||
title: "Components/LoginCard", | ||
component: LoginCard, | ||
args: { | ||
style: { width: "600px", height: "300px" }, | ||
}, | ||
}; | ||
|
||
export default meta; | ||
|
||
export const Default: StoryObj<typeof LoginCard> = {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import type { ReactNode } from "react"; | ||
import { LogginCard } from "~/components/LogginCard"; | ||
import { LoginCard } from "~/components/LoginCard"; | ||
|
||
export function SignUp(): ReactNode { | ||
return ( | ||
<div className="grid justify-items-center gap-8"> | ||
<img src="/logo.svg" alt="RicoShot" className="w-full" /> | ||
<LogginCard className="w-full rotate-2" /> | ||
<LoginCard className="w-full rotate-2" /> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters