-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
7 changed files
with
55 additions
and
3 deletions.
There are no files selected for viewing
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,14 @@ | ||
import SubHeader from "@/components/common/SubHeader"; | ||
import InputTestCode from "@/components/enterTestCode/InputTestCode"; | ||
import React from "react"; | ||
|
||
const enterPage = () => { | ||
return ( | ||
<div className="bg-white w-screen h-screen"> | ||
<SubHeader title="시험 시작하기" /> | ||
<InputTestCode /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default enterPage; |
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,5 @@ | ||
const Header = () => { | ||
return <div>Header</div>; | ||
}; | ||
|
||
export default Header; |
5 changes: 5 additions & 0 deletions
5
src/frontend/eyesee-user/src/components/common/NextButton.tsx
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,5 @@ | ||
const NextButton = () => { | ||
return <div>NextButton</div>; | ||
}; | ||
|
||
export default NextButton; |
10 changes: 10 additions & 0 deletions
10
src/frontend/eyesee-user/src/components/common/SubHeader.tsx
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,10 @@ | ||
type SubHeaderProps = { | ||
title: string; | ||
}; | ||
const SubHeader = ({ title }: SubHeaderProps) => { | ||
return ( | ||
<div className="text-[20px] font-bold mt-[8vh] ml-[10vw]">{title}</div> | ||
); | ||
}; | ||
|
||
export default SubHeader; |
13 changes: 13 additions & 0 deletions
13
src/frontend/eyesee-user/src/components/enterTestCode/InputTestCode.tsx
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,13 @@ | ||
const InputTestCode = () => { | ||
return ( | ||
<div className="flex flex-col items-center justify-center"> | ||
<div className="text-[#0E1D3C] text-[24px]">시험 코드 입력</div> | ||
<input | ||
type="text" | ||
className="border-b border-black text-center text-[24px] font-semibold" | ||
/> | ||
</div> | ||
); | ||
}; | ||
|
||
export default InputTestCode; |
Empty file.
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