import React, { Component } from 'react' import styles from './LndSyncing.scss' class LndSyncing extends Component { constructor(props) { super(props); this.state = { facts: [ { title: 'No2x', description: 'Segwit2x is a hard fork proposal led by Barry Silbert and the NYA. It is bullshit. Fuck that shit.' }, { title: 'Gang', description: 'Segwit2x is a hard fork proposal led by Barry Silbert and the NYA. It is bullshit. Fuck that shit.' }, { title: 'Yo', description: 'Segwit2x is a hard fork proposal led by Barry Silbert and the NYA. It is bullshit. Fuck that shit.' }, { title: 'Liiiiit', description: 'Segwit2x is a hard fork proposal led by Barry Silbert and the NYA. It is bullshit. Fuck that shit.' } ], currentFact: 0 } } render() { const { facts, currentFact } = this.state const renderCurrentFact = facts[currentFact] return (

zap

syncing your lightning node to the blockchain

{renderCurrentFact.title}

{renderCurrentFact.description}

) } } export default LndSyncing