Formatting
This commit is contained in:
parent
0d1ac3ffff
commit
af95a00ecf
1 changed files with 15 additions and 10 deletions
|
@ -14,16 +14,21 @@ export default () => {
|
||||||
waves="header"
|
waves="header"
|
||||||
title="This is not a CDN."
|
title="This is not a CDN."
|
||||||
paragraph={`Coming ${new Date().getFullYear() + 1}`}
|
paragraph={`Coming ${new Date().getFullYear() + 1}`}
|
||||||
links={[<Countdown key="countdown"
|
links={[
|
||||||
date={Date.now() + 2000}
|
<Countdown
|
||||||
intervalDelay={0}
|
key="countdown"
|
||||||
precision={1000}
|
date={Date.now() + 2000}
|
||||||
zeroPadTime={2}
|
intervalDelay={0}
|
||||||
renderer={props => <span>{props.total.toString().padStart(10, "0")} ms..</span>}
|
precision={1000}
|
||||||
onComplete={() => {
|
zeroPadTime={2}
|
||||||
window.location.replace("https://ipv4.army");
|
renderer={(props) => (
|
||||||
}}
|
<span>{props.total.toString().padStart(10, "0")} ms..</span>
|
||||||
/>]}
|
)}
|
||||||
|
onComplete={() => {
|
||||||
|
window.location.replace("https://ipv4.army");
|
||||||
|
}}
|
||||||
|
/>,
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
{/*
|
{/*
|
||||||
<hr />
|
<hr />
|
||||||
|
|
Loading…
Add table
Reference in a new issue