Skip to content

Commit

Permalink
style:changeformat of files to fit guidelines set by Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
BuyankhuuTsCAl committed Oct 3, 2023
1 parent b1b1aad commit 998cf09
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/app/components/InputFields.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
'use client'

import { FormHeaders, Input } from "../screens/loginScreen/styles"
export default function InputFields(props: { text: String, placeholder: string }) {

export default function InputFields(props: { text: string, placeholder: string }) {
return (
<main>
<div id="userInfo">
Expand Down
2 changes: 2 additions & 0 deletions src/app/components/LoginForm.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
'use client'

import InputFields from "./InputFields"

export default function LoginForm() {
return (
<div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client'
import LoginForm from "./components/LoginForm";
import { GlobalStyle, Fullscreen, Img, LoginBox, LoginContent, WelcomeSign, Button } from "./screens/loginScreen/styles"
import { GlobalStyle, Fullscreen, LoginBox, LoginContent, WelcomeSign, Button } from "./screens/loginScreen/styles"


export default function App() {
Expand Down
2 changes: 2 additions & 0 deletions src/app/screens/loginScreen/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
'use client'

import LoginForm from "../../components/LoginForm";

import { GlobalStyle, Fullscreen, Img, LoginBox, LoginContent, WelcomeSign, Button } from "./styles"

export default function App() {
Expand Down

0 comments on commit 998cf09

Please sign in to comment.