Merge branch 'rd-hn.create-pair-device-page' of https://github.com/nimbus-gui/nimbus-gui into rd-hn.create-pair-device-page
This commit is contained in:
commit
77f12a40ba
|
@ -7,11 +7,14 @@ import PairIcon from '../../components/Icons/PairIcon'
|
|||
import CreateIcon from '../../components/Icons/CreateIcon'
|
||||
import NodeIcon from '../../components/Icons/NodeIcon'
|
||||
import Titles from '../../components/General/Titles'
|
||||
import { useEffect, useState } from 'react'
|
||||
import { useState, useEffect } from 'react'
|
||||
import { v4 as uuidv4 } from 'uuid'
|
||||
|
||||
const PairDevice = () => {
|
||||
const isPaired = false
|
||||
const [autoChecked, setAutoChecked] = useState(false)
|
||||
const isPaired = false
|
||||
|
||||
console.log(uuidv4())
|
||||
|
||||
const [isPairing] = useState(true) // assuming starting as true for demo
|
||||
const [isAwaitingPairing, setIsAwaitingPairing] = useState(false)
|
||||
|
|
Loading…
Reference in New Issue