refactor: sort imports

This commit is contained in:
Luís Murta 2025-06-01 10:08:12 +01:00
parent dd2f8092bc
commit ecca1e269a
Signed by: satprog
GPG Key ID: 169EF1BBD7049F94
5 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
import js from '@eslint/js'
import globals from 'globals'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import globals from 'globals'
import tseslint from 'typescript-eslint'
export default tseslint.config(

View File

@ -1,9 +1,9 @@
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import { RouterProvider } from "react-router";
import "./index.css";
import { router } from "./routes.ts";
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
const queryClient = new QueryClient();

View File

@ -1,5 +1,5 @@
import "./root.css";
import { NavLink, Outlet } from "react-router";
import "./root.css";
export default function App() {
return (

View File

@ -1,10 +1,10 @@
import { keepPreviousData, useQuery } from "@tanstack/react-query";
import {
PaginationState,
ColumnFiltersState,
createColumnHelper,
flexRender,
getCoreRowModel,
PaginationState,
useReactTable,
} from "@tanstack/react-table";
import { useState } from "react";

View File

@ -1,5 +1,5 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from 'vite'
// https://vite.dev/config/
export default defineConfig({