consistency: double-quotes
why didn't ESLint care?
This commit is contained in:
parent
1bfd53e8ce
commit
b77d3a9cad
1 changed files with 4 additions and 4 deletions
|
|
@ -1,9 +1,9 @@
|
||||||
import Head from 'next/head'
|
import Head from "next/head"
|
||||||
|
|
||||||
import { useGlueJar } from "../../lib/gluejar";
|
import { useGlueJar } from "../../lib/gluejar";
|
||||||
import QrcodeDecoder from '../../lib/qr';
|
import QrcodeDecoder from "../../lib/qr";
|
||||||
import { useState } from 'react';
|
import { useState } from "react";
|
||||||
import { QRCode } from 'jsqr';
|
import { QRCode } from "jsqr";
|
||||||
|
|
||||||
function QRImage({ image }: { image: string }) {
|
function QRImage({ image }: { image: string }) {
|
||||||
const [data, setData] = useState<QRCode>();
|
const [data, setData] = useState<QRCode>();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue