feat: import uuid v4
This commit is contained in:
parent
5c3c8b6977
commit
6c647aff32
|
@ -8,10 +8,13 @@ import CreateIcon from '../../components/Icons/CreateIcon'
|
|||
import NodeIcon from '../../components/Icons/NodeIcon'
|
||||
import Titles from '../../components/General/Titles'
|
||||
import { useState } from 'react'
|
||||
import { v4 as uuidv4 } from 'uuid'
|
||||
|
||||
const PairDevice = () => {
|
||||
const isPaired = false
|
||||
const [autoChecked, setAutoChecked] = useState(false)
|
||||
const isPaired = false
|
||||
|
||||
console.log(uuidv4())
|
||||
|
||||
return (
|
||||
<PageWrapperShadow rightImageSrc="/background-images/day-night-bg.png">
|
||||
|
|
Loading…
Reference in New Issue