removed unneeded import

This commit is contained in:
Neshura 2022-12-15 21:35:45 +01:00
parent 5616975351
commit 8ecf388122
No known key found for this signature in database
GPG key ID: ACDF5B6EBECF6B0A

View file

@ -6,7 +6,6 @@ import { AppProps } from 'next/app';
import { DefaultTheme, ThemeProvider } from 'styled-components';
import { createContext, useContext, useEffect, useState } from 'react'
import { darkTheme } from '../components/themes';
import useSWR from 'swr';
import { getTheme } from '../components/themeselector';
export type NextPageWithLayout<P = {}, IP = P> = NextPage<P, IP> & {