-
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 #925 from Conflux-Chain/dev
feat: release new version
- Loading branch information
Showing
55 changed files
with
1,506 additions
and
57,797 deletions.
There are no files selected for viewing
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 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,10 @@ | ||
/** | ||
* Asynchronously loads the component for NFTChecker | ||
*/ | ||
|
||
import { lazyLoad } from 'utils/loadable'; | ||
|
||
export const CNS = lazyLoad( | ||
() => import('./index'), | ||
module => module.CNS, | ||
); |
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,37 @@ | ||
import React from 'react'; | ||
import imgNotFound from 'images/home/notFoundAddress.svg'; | ||
import styled from 'styled-components/macro'; | ||
|
||
export const NotFound = ({ children = 'reason' }) => { | ||
return ( | ||
<StyledWrapper> | ||
<div> | ||
<img src={imgNotFound} alt="cns search result not found"></img> | ||
</div> | ||
<div className="msg">{children}</div> | ||
</StyledWrapper> | ||
); | ||
}; | ||
|
||
const StyledWrapper = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
min-height: 30rem; | ||
justify-content: center; | ||
img { | ||
width: 240px; | ||
} | ||
.msg { | ||
font-style: normal; | ||
font-weight: 450; | ||
font-size: 1.5714rem; | ||
line-height: 2rem; | ||
color: #424242; | ||
margin-top: 4rem; | ||
max-width: 650px; | ||
text-align: center; | ||
} | ||
`; |
Oops, something went wrong.