13 lines
160 B
React
13 lines
160 B
React
import React from 'react'
|
|
|
|
import Lnd from '../components/Lnd/Lnd'
|
|
|
|
function LndPage() {
|
|
return (
|
|
<>
|
|
<Lnd />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default LndPage |