diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-09-23 13:14:11 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-09-23 13:14:11 +0300 |
commit | 4df5503f3e06761a7096324f8e093ab4c1afefa7 (patch) | |
tree | 551dd6d3cbaab637d5b777615987657c02d8b9a2 /src/pages/_app.tsx | |
parent | 2a287f317a51f5f02b643af0acf2733cadbb8081 (diff) | |
download | benzin-next-4df5503f3e06761a7096324f8e093ab4c1afefa7.tar.gz |
feat: add emoji plugin
Diffstat (limited to 'src/pages/_app.tsx')
-rw-r--r-- | src/pages/_app.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx index 191f276..a64a418 100644 --- a/src/pages/_app.tsx +++ b/src/pages/_app.tsx @@ -1,6 +1,6 @@ -import "../styles/globals.css"; +import '../styles/globals.css'; import logo from '../../public/eug-vs.png'; -import type { AppProps } from "next/app"; +import type { AppProps } from 'next/app'; import Image from 'next/future/image'; function MyApp({ Component, pageProps }: AppProps) { |