Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2021-1-capstone-design1
/
RIT_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
박권수
2021-08-17 10:25:11 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
bf442f5be6d712b906fd72a3c187f7757408767f
bf442f5b
1 parent
b8da1b74
style. code style
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
web/src/api/client.ts
web/src/views/login/LoginPresenter.tsx
web/src/views/main/MainPresenter.tsx
web/src/api/client.ts
View file @
bf442f5
...
...
@@ -18,7 +18,7 @@ client.interceptors.response.use(
return
response
;
},
function
(
error
)
{
console
.
log
(
error
);
console
.
log
(
error
.
message
);
return
error
;
}
);
...
...
web/src/views/login/LoginPresenter.tsx
View file @
bf442f5
...
...
@@ -18,15 +18,14 @@ const LoginPresenter = (props : LoginProps) => {
<styled.LoginWrapper>
<styled.LoginInputWrapper>
<styled.LoginEachInputWrapper>
<styled.LoginInputText
>
로그인 이메일
<styled.LoginInputText>
이메일
</styled.LoginInputText>
<styled.LoginInput
type = 'text'
value = {props.loginForm.userId}
onChange = {props.onSetUserId}
placeholder = 'Email'
/>
</styled.LoginEachInputWrapper>
<styled.LoginEachInputWrapper>
...
...
@@ -37,6 +36,7 @@ const LoginPresenter = (props : LoginProps) => {
type = 'password'
value = {props.loginForm.password}
onChange = {props.onSetPassword}
placeholder = 'password'
/>
</styled.LoginEachInputWrapper>
</styled.LoginInputWrapper>
...
...
web/src/views/main/MainPresenter.tsx
View file @
bf442f5
...
...
@@ -10,7 +10,7 @@ interface MainProps {
const MainPresenter = (props : MainProps) => {
return (
<styled.Container>
This is Main Page {props.userTypeCd}
This is Main Page
for
{props.userTypeCd}
</styled.Container>
)
};
...
...
Please
register
or
login
to post a comment