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.
14 lines
339 B
14 lines
339 B
import React from 'react'
|
|
import styles from './LndSyncing.scss'
|
|
|
|
const LndSyncing = () => (
|
|
<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
|
|
|