fix: eslint fixes and file formatting

This commit is contained in:
sriram veeraghanta 2024-03-19 20:08:35 +05:30
parent 473dfc7a5b
commit 53ddef1cd5
954 changed files with 3921 additions and 3809 deletions

View file

@ -1,22 +1,22 @@
import { ReactElement } from "react";
import Head from "next/head";
import { AppProps } from "next/app";
import Head from "next/head";
import { ThemeProvider } from "next-themes";
// styles
import "styles/globals.css";
import "styles/command-pallette.css";
import "styles/nprogress.css";
import "styles/emoji.css";
import "styles/react-day-picker.css";
import "@/styles/globals.css";
import "@/styles/command-pallette.css";
import "@/styles/nprogress.css";
import "@/styles/emoji.css";
import "@/styles/react-day-picker.css";
// constants
import { THEMES } from "constants/themes";
import { SITE_TITLE } from "constants/seo-variables";
import { SITE_TITLE } from "@/constants/seo-variables";
import { THEMES } from "@/constants/themes";
// mobx store provider
import { StoreProvider } from "contexts/store-context";
import { StoreProvider } from "@/contexts/store-context";
import { AppProvider } from "lib/app-provider";
import { AppProvider } from "@/lib/app-provider";
// types
import { NextPageWithLayout } from "lib/types";
import { NextPageWithLayout } from "@/lib/types";
type AppPropsWithLayout = AppProps & {
Component: NextPageWithLayout;