consistency: double-quotes

why didn't ESLint care?
main
Charlotte Som 2023-02-13 15:57:40 +00:00
parent 1bfd53e8ce
commit b77d3a9cad
1 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
import Head from 'next/head'
import Head from "next/head"
import { useGlueJar } from "../../lib/gluejar";
import QrcodeDecoder from '../../lib/qr';
import { useState } from 'react';
import { QRCode } from 'jsqr';
import QrcodeDecoder from "../../lib/qr";
import { useState } from "react";
import { QRCode } from "jsqr";
function QRImage({ image }: { image: string }) {
const [data, setData] = useState<QRCode>();