-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #98 from CAUCSE/develop
[FEAT] 서비스 오픈 대비 유지보수 배포 4차 (운영계)
- Loading branch information
Showing
76 changed files
with
1,332 additions
and
148 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
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 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 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 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,39 @@ | ||
import styled from '@emotion/styled'; | ||
import { observer } from 'mobx-react-lite'; | ||
import React from 'react'; | ||
|
||
import { PageUiStoreImpl } from './NoPermissionPageUiStore'; | ||
|
||
import { BodyScreen, Header, PageBody, PageStoreHOC } from '@/components'; | ||
import { PAGE_URL } from '@/configs/path'; | ||
|
||
const NoPermissionPage: React.FC = observer(() => { | ||
return ( | ||
<> | ||
<Header withBack={PAGE_URL.Home} title="접근 불가" /> | ||
<PageBody> | ||
<Wrapper> | ||
<img src="/images/empty.png" alt="Empty list logo" /> | ||
<br /> | ||
페이지가 존재하지 않거나, 권한이 없습니다. | ||
</Wrapper> | ||
</PageBody> | ||
</> | ||
); | ||
}); | ||
|
||
const Wrapper = styled.div` | ||
margin: 160px 0 30px; | ||
font-size: 17px; | ||
//font-weight: bolder; | ||
color: gray; | ||
line-height: 12px; | ||
text-align: center; | ||
> img { | ||
margin-bottom: 10px; | ||
width: 100px; | ||
} | ||
`; | ||
|
||
export default PageStoreHOC(<NoPermissionPage />, { store: PageUiStoreImpl }); |
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,9 @@ | ||
import { makeAutoObservable } from 'mobx'; | ||
|
||
export class NoPermissionPageUiStore { | ||
constructor() { | ||
makeAutoObservable(this, {}, { autoBind: true }); | ||
} | ||
} | ||
|
||
export const PageUiStoreImpl = new NoPermissionPageUiStore(); |
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 @@ | ||
export { default as NoPermission } from './NoPermissionPage'; |
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 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
Oops, something went wrong.