Island UI: replace double quotes with single quotes in BreachSection.tsx

This commit is contained in:
VakarisZ 2021-07-26 11:49:08 +03:00
parent e6a87839d6
commit a6374e0678
1 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
import React, {useEffect, useState} from "react";
import IslandHttpClient from "../../IslandHttpClient";
import NumberedReportSection from "./NumberedReportSection";
import LoadingIcon from "../../ui-components/LoadingIcon";
import {renderLimitedArray} from "../common/RenderArrays";
import React, {useEffect, useState} from 'react';
import IslandHttpClient from '../../IslandHttpClient';
import NumberedReportSection from './NumberedReportSection';
import LoadingIcon from '../../ui-components/LoadingIcon';
import {renderLimitedArray} from '../common/RenderArrays';
function BreachSection() {
const [machines, setMachines] = useState(null);