[ESLint] Prefer named exports (#427)

This commit is contained in:
schroda
2023-10-28 00:32:02 +02:00
committed by GitHub
parent 68e7b4b16d
commit 5a5b12a9e1
118 changed files with 319 additions and 470 deletions

View File

@@ -10,11 +10,11 @@ import { useState } from 'react';
import Tabs from '@mui/material/Tabs';
import Tab from '@mui/material/Tab';
import { useTranslation } from 'react-i18next';
import Sources from '@/screens/Sources';
import Extensions from '@/screens/Extensions';
import TabPanel from '@/components/util/TabPanel';
import { Sources } from '@/screens/Sources';
import { Extensions } from '@/screens/Extensions';
import { TabPanel } from '@/components/util/TabPanel';
export default function Browse() {
export function Browse() {
const { t } = useTranslation();
const [tabNum, setTabNum] = useState<number>(0);