0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-23 09:53:06 +00:00

lint client

This commit is contained in:
Víctor Losada Hernández
2026-01-21 16:17:11 +01:00
parent 3a6541269a
commit 4bf485b2e2
8 changed files with 18 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
import './admin.less';
import React, { useEffect, useState } from 'react';
import BrewUtils from "./brewUtils/brewUtils.jsx";
import BrewUtils from './brewUtils/brewUtils.jsx';
import NotificationUtils from './notificationUtils/notificationUtils.jsx';
import AuthorUtils from './authorUtils/authorUtils.jsx';
import LockTools from './lockTools/lockTools.jsx';

View File

@@ -1,12 +1,12 @@
import React from "react";
import "./brewUtils.less";
import React from 'react';
import './brewUtils.less';
import BrewCleanup from "./brewCleanup/brewCleanup.jsx";
import BrewLookup from "./brewLookup/brewLookup.jsx";
import BrewCompress from "./brewCompress/brewCompress.jsx";
import Stats from "./stats/stats.jsx";
import BrewCleanup from './brewCleanup/brewCleanup.jsx';
import BrewLookup from './brewLookup/brewLookup.jsx';
import BrewCompress from './brewCompress/brewCompress.jsx';
import Stats from './stats/stats.jsx';
const BrewUtils = () => {
const BrewUtils = ()=>{
return (
<>
<Stats />

View File

@@ -1,5 +1,5 @@
import './notificationLookup.less';
import React, { useState} from 'react';
import React, { useState } from 'react';
import request from 'superagent';
import Moment from 'moment';