You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
348 B
15 lines
348 B
7 years ago
|
import React from 'react'
|
||
|
import styles from './LndSyncing.scss'
|
||
|
|
||
|
const LndSyncing = ({ lines }) => (
|
||
|
<div className={styles.container}>
|
||
|
<h3>zap</h3>
|
||
|
<div className={styles.loading}>
|
||
|
<div className={styles.spinner}></div>
|
||
|
<h1>syncing your lightning node to the blockchain</h1>
|
||
|
</div>
|
||
|
</div>
|
||
|
)
|
||
|
|
||
|
export default LndSyncing
|