chore: format

This commit is contained in:
Aaron Yarborough 2025-03-16 12:04:49 +00:00
parent 3a889b1442
commit fb00967601

View file

@ -1,14 +1,14 @@
import '@/styles/globals.css' import '@/styles/globals.css'
import "highlight.js/styles/atom-one-dark.css"; import 'highlight.js/styles/atom-one-dark.css'
import hljs from "highlight.js"; import hljs from 'highlight.js'
import { DefaultSeo } from 'next-seo' import { DefaultSeo } from 'next-seo'
import { useEffect } from 'react'; import { useEffect } from 'react'
export default function App ({ Component, pageProps }) { export default function App ({ Component, pageProps }) {
useEffect(() => { useEffect(() => {
hljs.highlightAll(); hljs.highlightAll()
}, [ Component ]); }, [Component])
return ( return (
<> <>