change single to double quotes
This commit is contained in:
parent
3a6acb5ef7
commit
4131de8692
@ -1,4 +1,4 @@
|
||||
'use client'
|
||||
"use client"
|
||||
|
||||
import { useRouter } from "next/navigation";
|
||||
import styled from "styled-components";
|
||||
|
@ -1,4 +1,4 @@
|
||||
'use client'
|
||||
"use client"
|
||||
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { useState, useEffect } from "react";
|
||||
@ -29,7 +29,7 @@ export default function RootLayout({
|
||||
<html lang="en">
|
||||
{/*
|
||||
can't use next.Metadata,
|
||||
because 'use client' + styled components are
|
||||
because "use client" + styled components are
|
||||
preventing it.
|
||||
|
||||
next/head wouldn't work too, so legacy solution is used
|
||||
|
@ -1,4 +1,4 @@
|
||||
'use client'
|
||||
"use client"
|
||||
|
||||
import { useTheme } from "@/providers/theme.provider";
|
||||
import { Button } from "@/styles";
|
||||
|
@ -1,4 +1,4 @@
|
||||
'use client'
|
||||
"use client"
|
||||
|
||||
import styled, { createGlobalStyle } from "styled-components";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user