-
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
10 changed files
with
2,907 additions
and
85 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
Submodule react-repo
updated
from 7f41d4 to 3eb16e
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,3 @@ | ||
.Input { | ||
//text-align: center; | ||
} |
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
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 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 |
---|---|---|
@@ -1,24 +1,21 @@ | ||
import React from "react"; | ||
|
||
function InputSample() { | ||
import * as React from 'react'; | ||
import Box from '@mui/material/Box'; | ||
import TextField from '@mui/material/TextField'; | ||
|
||
export default function Input() { | ||
return ( | ||
<div> | ||
<input /> | ||
<button>초기화</button> | ||
<div> | ||
<b>이름</b> | ||
어쩌고저쩌고... | ||
</div> | ||
<div> | ||
<b>전화번호</b> | ||
어쩌고저쩌고... | ||
</div> | ||
<div> | ||
<b>인원수</b> | ||
어쩌고저쩌고... | ||
</div> | ||
</div> | ||
<Box | ||
component="form" | ||
sx={{ | ||
'& > :not(style)': { m: 1, width: '25ch' }, | ||
}} | ||
noValidate | ||
autoComplete="off" | ||
> | ||
<TextField id="standard-basic" label="가게명/업소명" variant="standard" /> | ||
<TextField id="standard-basic" label="가게 번호" variant="standard" /> | ||
<TextField id="standard-basic" label="가게 주소" variant="standard" /> | ||
<TextField id="standard-basic" label="비밀번호 (4자리)" variant="standard" /> | ||
</Box> | ||
); | ||
} | ||
|
||
export default InputSample; | ||
} |
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